Skip to content

Commit aa7318d

Browse files
dvdksnclaude
andcommitted
docs: remove conflicting Buildx packages
The distribution-provided docker-buildx package conflicts with Docker's official Buildx plugin on Debian and Ubuntu. Add it to the prerequisite package removal lists and commands while retaining the official docker-buildx-plugin package name. Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 97a5bbd commit aa7318d

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

content/manuals/engine/install/debian.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ The unofficial packages to uninstall are:
6161
- `docker.io`
6262
- `docker-compose`
6363
- `docker-doc`
64+
- `docker-buildx`
6465
- `podman-docker`
6566

6667
Moreover, Docker Engine depends on `containerd` and `runc`. Docker Engine
@@ -71,7 +72,7 @@ conflicts with the versions bundled with Docker Engine.
7172
Run the following command to uninstall all conflicting packages:
7273

7374
```console
74-
$ sudo apt remove $(dpkg --get-selections docker.io docker-compose docker-doc podman-docker containerd runc | cut -f1)
75+
$ sudo apt remove $(dpkg --get-selections docker.io docker-compose docker-doc docker-buildx podman-docker containerd runc | cut -f1)
7576
```
7677

7778
`apt` might report that you have none of these packages installed.

content/manuals/engine/install/ubuntu.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ The unofficial packages to uninstall are:
7878
- `docker-compose`
7979
- `docker-compose-v2`
8080
- `docker-doc`
81+
- `docker-buildx`
8182
- `podman-docker`
8283

8384
Moreover, Docker Engine depends on `containerd` and `runc`. Docker Engine
@@ -88,7 +89,7 @@ conflicts with the versions bundled with Docker Engine.
8889
Run the following command to uninstall all conflicting packages:
8990

9091
```console
91-
$ sudo apt remove $(dpkg --get-selections docker.io docker-compose docker-compose-v2 docker-doc podman-docker containerd runc | cut -f1)
92+
$ sudo apt remove $(dpkg --get-selections docker.io docker-compose docker-compose-v2 docker-doc docker-buildx podman-docker containerd runc | cut -f1)
9293
```
9394

9495
`apt` might report that you have none of these packages installed.

0 commit comments

Comments
 (0)