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.