Skip to content

Commit ad49ff4

Browse files
authored
ENGDOCS-2589 (docker#22507)
<!--Delete sections as needed --> ## Description Freshness to the Compose install pages and Bridge page ## Related issues or tickets <!-- Related issues, pull requests, or Jira tickets --> ## Reviews <!-- Notes for reviewers here --> <!-- List applicable reviews (optionally @tag reviewers) --> - [ ] Technical review - [ ] Editorial review - [ ] Product review
1 parent fcb958a commit ad49ff4

File tree

4 files changed

+25
-45
lines changed

4 files changed

+25
-45
lines changed

content/manuals/compose/bridge/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ To get started with Compose Bridge, you need to:
3232
2. Sign in to your Docker account.
3333
3. Navigate to the **Features in development** tab in **Settings**.
3434
4. From the **Experimental features** tab, select **Enable Compose Bridge**.
35+
5. Select **Apply & restart**.
3536

3637
## Feedback
3738

content/manuals/compose/install/_index.md

Lines changed: 11 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -14,46 +14,36 @@ aliases:
1414
- /compose/install/compose-desktop/
1515
---
1616

17-
This page contains summary information about the available options for installing Docker Compose.
17+
This page summarizes the different ways you can install Docker Compose, depending on your platform and needs.
1818

1919
## Installation scenarios
2020

21-
### Scenario one: Install Docker Desktop
21+
### Scenario one: Install Docker Desktop (Recommended)
2222

23-
The easiest and recommended way to get Docker Compose is to install Docker Desktop. Docker Desktop
24-
includes Docker Compose along with Docker Engine and Docker CLI which are Compose prerequisites.
23+
The easiest and recommended way to get Docker Compose is to install Docker Desktop.
2524

26-
Docker Desktop is available on:
25+
Docker Desktop includes Docker Compose along with Docker Engine and Docker CLI which are Compose prerequisites.
26+
27+
Docker Desktop is available for:
2728
- [Linux](/manuals/desktop/setup/install/linux/_index.md)
2829
- [Mac](/manuals/desktop/setup/install/mac-install.md)
2930
- [Windows](/manuals/desktop/setup/install/windows-install.md)
3031

31-
If you have already installed Docker Desktop, you can check which version of Compose you have by selecting **About Docker Desktop** from the Docker menu {{< inline-image src="../../desktop/images/whale-x.svg" alt="whale menu" >}}.
32-
33-
> [!NOTE]
34-
>
35-
> After Docker Compose V1 was removed in Docker Desktop version [4.23.0](/desktop/release-notes/#4230) as it had reached end-of-life,
36-
> the `docker-compose` command now points directly to the Docker Compose V2 binary, running in standalone mode.
37-
> If you rely on Docker Desktop auto-update, the symlink might be broken and command unavailable, as the update doesn't ask for administrator password.
32+
> [!TIP]
3833
>
39-
> This only affects Mac users. To fix this, either recreate the symlink:
40-
> ```console
41-
> $ sudo rm /usr/local/bin/docker-compose
42-
> $ sudo ln -s /Applications/Docker.app/Contents/Resources/cli-plugins/docker-compose /usr/local/bin/docker-compose
43-
> ```
44-
> Or enable [Automatically check configuration](/manuals/desktop/settings-and-maintenance/settings.md) which will detect and fix it for you.
34+
> If you have already installed Docker Desktop, you can check which version of Compose you have by selecting **About Docker Desktop** from the Docker menu {{< inline-image src="../../desktop/images/whale-x.svg" alt="whale menu" >}}.
4535
46-
### Scenario two: Install the Docker Compose plugin
36+
### Scenario two: Install the Docker Compose plugin (Linux only)
4737

4838
> [!IMPORTANT]
4939
>
50-
> This install scenario is only available on Linux.
40+
> This method is only available on Linux.
5141
5242
If you already have Docker Engine and Docker CLI installed, you can install the Docker Compose plugin from the command line, by either:
5343
- [Using Docker's repository](linux.md#install-using-the-repository)
5444
- [Downloading and installing manually](linux.md#install-the-plugin-manually)
5545

56-
### Scenario three: Install the Docker Compose standalone
46+
### Scenario three: Install the Docker Compose standalone (Legacy)
5747

5848
> [!WARNING]
5949
>

content/manuals/compose/install/linux.md

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ To install the Docker Compose plugin on Linux, you can either:
2323

2424
> [!NOTE]
2525
>
26-
> These instructions assume you already have Docker Engine and Docker CLI installed and now want to install the Docker Compose plugin. For the Docker Compose standalone, see [Install the Docker Compose Standalone](standalone.md).
26+
> These instructions assume you already have Docker Engine and Docker CLI installed and now want to install the Docker Compose plugin.
2727
2828
## Install using the repository
2929

@@ -58,14 +58,6 @@ To install the Docker Compose plugin on Linux, you can either:
5858
$ docker compose version
5959
```
6060

61-
Expected output:
62-
63-
```text
64-
Docker Compose version vN.N.N
65-
```
66-
67-
Where `vN.N.N` is placeholder text standing in for the latest version.
68-
6961
### Update Docker Compose
7062

7163
To update the Docker Compose plugin, run the following commands:
@@ -85,7 +77,7 @@ To update the Docker Compose plugin, run the following commands:
8577

8678
## Install the plugin manually
8779

88-
> [!NOTE]
80+
> [!IMPORTANT]
8981
>
9082
> This option requires you to manage upgrades manually. It is recommended that you set up Docker's repository for easier maintenance.
9183

@@ -121,9 +113,4 @@ To update the Docker Compose plugin, run the following commands:
121113
```console
122114
$ docker compose version
123115
```
124-
125-
Expected output:
126-
127-
```text
128-
Docker Compose version {{% param "compose_version" %}}
129-
```
116+

content/manuals/compose/install/uninstall.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,43 +4,45 @@ keywords: compose, orchestration, uninstall, uninstallation, docker, documentati
44
title: Uninstall Docker Compose
55
---
66

7-
Uninstalling Docker Compose depends on the method you have used to install Docker Compose. On this page you can find specific instructions to uninstall Docker Compose.
7+
How you uninstall Docker Compose depends on how it was installed. This guide covers uninstallation instructions for:
88

9+
- Docker Compose installed via Docker Desktop
10+
- Docker Compose installed as a CLI plugin
911

10-
## Uninstalling Docker Desktop
12+
## Uninstalling Docker Compose with Docker Desktop
1113

1214
If you want to uninstall Docker Compose and you have installed Docker Desktop, see [Uninstall Docker Desktop](/manuals/desktop/uninstall.md).
1315

1416
> [!NOTE]
1517
>
16-
> Unless you have other Docker instances installed on that specific environment, you would be removing Docker altogether by uninstalling Docker Desktop.
18+
> Unless you have other Docker instances installed on that specific environment, uninstalling Docker Desktop removes all Docker components, including Docker Engine, Docker CLI, and Docker Compose.
1719
1820
## Uninstalling the Docker Compose CLI plugin
1921

20-
To remove the Docker Compose CLI plugin, run:
22+
If you installed Docker Compose via a package manager, run:
2123

22-
Ubuntu, Debian:
24+
On Ubuntu or Debian:
2325

2426
```console
2527
$ sudo apt-get remove docker-compose-plugin
2628
```
27-
RPM-based distributions:
29+
On RPM-based distributions:
2830

2931
```console
3032
$ sudo yum remove docker-compose-plugin
3133
```
3234

3335
### Manually installed
3436

35-
If you used `curl` to install Docker Compose CLI plugin, to uninstall it, run:
37+
If you installed Docker Compose manually (using curl), remove it by deleting the binary:
3638

3739
```console
3840
$ rm $DOCKER_CONFIG/cli-plugins/docker-compose
3941
```
4042

4143
### Remove for all users
4244

43-
Or, if you have installed Docker Compose for all users, run:
45+
If installed for all users, remove it from the system directory:
4446

4547
```console
4648
$ rm /usr/local/lib/docker/cli-plugins/docker-compose

0 commit comments

Comments
 (0)