Skip to content
Merged
Changes from 1 commit
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
12 changes: 11 additions & 1 deletion content/manuals/desktop/uninstall.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,21 @@
$ /Applications/Docker.app/Contents/MacOS/uninstall
```

You may encounter the below error when uninstalling Docker Desktop using uninstall command.

Check warning on line 66 in content/manuals/desktop/uninstall.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Docker.RecommendedWords] Consider using 'following' instead of 'below' Raw Output: {"message": "[Docker.RecommendedWords] Consider using 'following' instead of 'below'", "location": {"path": "content/manuals/desktop/uninstall.md", "range": {"start": {"line": 66, "column": 23}}}, "severity": "INFO"}
```console
$ /Applications/Docker.app/Contents/MacOS/uninstall
Password:
Uninstalling Docker Desktop...
Error: unlinkat /Users/<USER_HOME>/Library/Containers/com.docker.docker/.com.apple.containermanagerd.metadata.plist: operation not permitted
```
The operation not permitted error is reported either on the file `.com.apple.containermanagerd.metadata.plist` or on the parent directory `/Users/<USER_HOME>/Library/Containers/com.docker.docker/`. This error can be ignored. Docker Desktop uninstall at this point has completed successfully.
You can remove the directory `/Users/<USER_HOME>/Library/Containers/com.docker.docker/` later by allowing "Full Disk Access" to the terminal application you are using (System Settings --> Privacy & Security --> Full Disk Access").


After uninstalling Docker Desktop, there may be some residual files left behind which you can remove:

```console
$ rm -rf ~/Library/Group\ Containers/group.com.docker
$ rm -rf ~/Library/Containers/com.docker.docker
$ rm -rf ~/.docker
```

Expand Down