Skip to content

docs: update uninstall.md to fix Arch uninstall commands #22493

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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: 1 addition & 2 deletions content/manuals/desktop/uninstall.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ To uninstall Docker Desktop for Arch:
1. Remove the Docker Desktop application. Run:

```console
$ sudo pacman remove docker-desktop
$ sudo pacman -Rsn docker-desktop
```

This removes the Docker Desktop package itself but doesn’t delete all of its files or settings.
Expand All @@ -197,7 +197,6 @@ To uninstall Docker Desktop for Arch:
```console
$ rm -r $HOME/.docker/desktop
$ sudo rm /usr/local/bin/com.docker.cli
$ sudo apt purge docker-desktop
```

This removes configuration and data files at `$HOME/.docker/desktop`, the symlink at `/usr/local/bin/com.docker.cli`, and purges the remaining systemd service files.
Expand Down