Skip to content

Commit 6c37bd0

Browse files
committed
manuals: add page on deprecated and retired features
Signed-off-by: David Karlsson <[email protected]>
1 parent d7f4f4b commit 6c37bd0

File tree

3 files changed

+174
-117
lines changed

3 files changed

+174
-117
lines changed

content/manuals/cloud/index.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

content/manuals/registry.md

Lines changed: 0 additions & 94 deletions
This file was deleted.

content/manuals/retired.md

Lines changed: 174 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,174 @@
1+
---
2+
title: Deprecated and retired Docker products and features
3+
linkTitle: Deprecated products and features
4+
description: |
5+
Explore deprecated and retired Docker features, products, and open source
6+
projects, including details on transitioned tools and archived initiatives.
7+
params:
8+
sidebar:
9+
group: Products
10+
aliases:
11+
- /cloud/
12+
- /cloud/aci-compose-features/
13+
- /cloud/aci-container-features/
14+
- /cloud/aci-integration/
15+
- /cloud/ecs-architecture/
16+
- /cloud/ecs-compose-examples/
17+
- /cloud/ecs-compose-features/
18+
- /cloud/ecs-integration/
19+
- /engine/context/aci-integration/
20+
- /engine/context/ecs-integration/
21+
- /registry/
22+
- /registry/compatibility/
23+
- /registry/configuration/
24+
- /registry/deploying/
25+
- /registry/deprecated/
26+
- /registry/garbage-collection/
27+
- /registry/help/
28+
- /registry/insecure/
29+
- /registry/introduction/
30+
- /registry/notifications/
31+
- /registry/recipes/
32+
- /registry/recipes/apache/
33+
- /registry/recipes/nginx/
34+
- /registry/recipes/osx-setup-guide/
35+
- /registry/spec/
36+
- /registry/spec/api/
37+
- /registry/spec/auth/
38+
- /registry/spec/auth/jwt/
39+
- /registry/spec/auth/oauth/
40+
- /registry/spec/auth/scope/
41+
- /registry/spec/auth/token/
42+
- /registry/spec/deprecated-schema-v1/
43+
- /registry/spec/implementations/
44+
- /registry/spec/json/
45+
- /registry/spec/manifest-v2-1/
46+
- /registry/spec/manifest-v2-2/
47+
- /registry/spec/menu/
48+
- /registry/storage-drivers/
49+
- /registry/storage-drivers/azure/
50+
- /registry/storage-drivers/filesystem/
51+
- /registry/storage-drivers/gcs/
52+
- /registry/storage-drivers/inmemory/
53+
- /registry/storage-drivers/oss/
54+
- /registry/storage-drivers/s3/
55+
- /registry/storage-drivers/swift/
56+
---
57+
58+
This document provides an overview of Docker features, products, and
59+
open-source projects that have been deprecated, retired, or transitioned.
60+
61+
> [!NOTE]
62+
> This page does not cover deprecated and removed Docker Engine features.
63+
> For a detailed list of deprecated Docker Engine features, refer to the
64+
> [Docker Engine Deprecated Features documentation](/manuals/engine/deprecated.md).
65+
66+
## Products and features
67+
68+
Support for these deprecated or retired features is no longer provided by
69+
Docker, Inc. The projects that have been transitioned to third parties continue
70+
to receive updates from their new maintainers.
71+
72+
### Docker Machine
73+
74+
Docker Machine was a tool for provisioning and managing Docker hosts across
75+
various platforms, including virtual machines and cloud providers. It is no
76+
longer maintained, and users are encouraged to use Docker Desktop or Docker
77+
Engine directly on supported platforms. Machine's approach to creating and
78+
configuring hosts has been superseded by more modern workflows that integrate
79+
more closely with Docker Desktop.
80+
81+
### Docker Toolbox
82+
83+
Docker Toolbox was used on older systems where Docker Desktop could not run. It
84+
bundled Docker Machine, Docker Engine, and Docker Compose into a single
85+
installer. Toolbox is no longer maintained and is effectively replaced by
86+
Docker Desktop on current systems. References to Docker Toolbox occasionally
87+
appear in older documentation or community tutorials, but it is not recommended
88+
for new installations.
89+
90+
### Docker Cloud Integrations
91+
92+
Docker previously offered integrations with multiple cloud providers to
93+
streamline container workflows. These integrations have been deprecated, and
94+
users should now rely on native cloud tools or third-party solutions to manage
95+
their workloads. The move toward platform-specific or universal orchestration
96+
tools reduced the need for specialized Docker Cloud integrations.
97+
98+
### Docker Enterprise Edition
99+
100+
Docker Enterprise Edition (EE) was Docker's commercial platform for deploying
101+
and managing large-scale container environments. It was acquired by Mirantis in
102+
2019, and users looking for enterprise-level functionality can now explore
103+
Mirantis Kubernetes Engine or other products offered by Mirantis. Much of the
104+
technology and features found in Docker EE have been absorbed into the Mirantis
105+
product line.
106+
107+
### Docker Data Center and Docker Trusted Registry
108+
109+
Docker Data Center (DDC) was an umbrella term that encompassed Docker Universal
110+
Control Plane (UCP) and Docker Trusted Registry (DTR). These components
111+
provided a full-stack solution for managing containers, security, and registry
112+
services in enterprise environments. They are now under the Mirantis portfolio
113+
following the Docker Enterprise acquisition. Users still encountering
114+
references to DDC, UCP, or DTR should refer to Mirantis's documentation for
115+
guidance on modern equivalents.
116+
117+
### Dev Environments
118+
119+
Dev Environments was a feature introduced in Docker Desktop that allowed
120+
developers to spin up development environments quickly. This feature is no
121+
longer under active development. Similar workflows can be achieved through
122+
Docker Compose or by creating custom configurations tailored to specific
123+
project requirements.
124+
125+
## Open source projects
126+
127+
Several open-source projects originally maintained by Docker have been
128+
archived, discontinued, or transitioned to other maintainers or organizations.
129+
130+
### Registry (now CNCF Distribution)
131+
132+
The Docker Registry served as the open-source implementation of a container
133+
image registry. It was donated to the Cloud Native Computing Foundation (CNCF)
134+
in 2019 and is maintained under the name "Distribution." It remains a
135+
cornerstone for managing and distributing container images.
136+
137+
[CNCF Distribution](https://github.com/distribution/distribution)
138+
139+
### Docker Compose v1 (Replaced by Compose v2)
140+
141+
Docker Compose v1 (`docker-compose`), a Python-based tool for defining
142+
multi-container applications, has been superseded by Compose v2 (`docker
143+
compose`), which is written in Go and integrates with the Docker CLI. Compose
144+
v1 is no longer maintained, and users should migrate to Compose v2.
145+
146+
[Compose v2 Documentation](/manuals/compose/_index.md)
147+
148+
### InfraKit
149+
150+
InfraKit was an open-source toolkit designed to manage declarative
151+
infrastructure and automate container deployments. It has been archived, and
152+
users are encouraged to explore tools such as Terraform for infrastructure
153+
provisioning and orchestration.
154+
155+
[InfraKit GitHub Repository](https://github.com/docker/infrakit)
156+
157+
### Docker Notary (now CNCF Notary)
158+
159+
Docker Notary was a system for signing and verifying the authenticity of
160+
container content. It was donated to the CNCF in 2017 and continues to be
161+
developed as "Notary." Users seeking secure content verification should consult
162+
the CNCF Notary project.
163+
164+
[CNCF Notary](https://github.com/notaryproject/notary)
165+
166+
### SwarmKit
167+
168+
SwarmKit powers Docker Swarm mode by providing orchestration for container
169+
deployments. While Swarm mode remains functional, development has slowed in
170+
favor of Kubernetes-based solutions. Individuals evaluating container
171+
orchestration options should investigate whether SwarmKit meets modern workload
172+
requirements.
173+
174+
[SwarmKit GitHub Repository](https://github.com/docker/swarmkit)

0 commit comments

Comments
 (0)