From aa7318d4769116af47fc48f2ede617ea3a4fc697 Mon Sep 17 00:00:00 2001 From: David Karlsson <35727626+dvdksn@users.noreply.github.com> Date: Sun, 26 Jul 2026 06:00:22 +0000 Subject: [PATCH] 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 --- content/manuals/engine/install/debian.md | 3 ++- content/manuals/engine/install/ubuntu.md | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/content/manuals/engine/install/debian.md b/content/manuals/engine/install/debian.md index 5ddc7d1f131c..895925ed34df 100644 --- a/content/manuals/engine/install/debian.md +++ b/content/manuals/engine/install/debian.md @@ -61,6 +61,7 @@ The unofficial packages to uninstall are: - `docker.io` - `docker-compose` - `docker-doc` +- `docker-buildx` - `podman-docker` Moreover, Docker Engine depends on `containerd` and `runc`. Docker Engine @@ -71,7 +72,7 @@ conflicts with the versions bundled with Docker Engine. Run the following command to uninstall all conflicting packages: ```console -$ sudo apt remove $(dpkg --get-selections docker.io docker-compose docker-doc podman-docker containerd runc | cut -f1) +$ sudo apt remove $(dpkg --get-selections docker.io docker-compose docker-doc docker-buildx podman-docker containerd runc | cut -f1) ``` `apt` might report that you have none of these packages installed. diff --git a/content/manuals/engine/install/ubuntu.md b/content/manuals/engine/install/ubuntu.md index 38d23463673b..9ac312c0422e 100644 --- a/content/manuals/engine/install/ubuntu.md +++ b/content/manuals/engine/install/ubuntu.md @@ -78,6 +78,7 @@ The unofficial packages to uninstall are: - `docker-compose` - `docker-compose-v2` - `docker-doc` +- `docker-buildx` - `podman-docker` Moreover, Docker Engine depends on `containerd` and `runc`. Docker Engine @@ -88,7 +89,7 @@ conflicts with the versions bundled with Docker Engine. Run the following command to uninstall all conflicting packages: ```console -$ sudo apt remove $(dpkg --get-selections docker.io docker-compose docker-compose-v2 docker-doc podman-docker containerd runc | cut -f1) +$ sudo apt remove $(dpkg --get-selections docker.io docker-compose docker-compose-v2 docker-doc docker-buildx podman-docker containerd runc | cut -f1) ``` `apt` might report that you have none of these packages installed.