Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion content/manuals/engine/install/debian.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand Down
3 changes: 2 additions & 1 deletion content/manuals/engine/install/ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand Down