Created
June 10, 2025 13:43
-
-
Save basperheim/a361538e972006b5223c5651c714579f to your computer and use it in GitHub Desktop.
Removes Docker Desktop from macOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Uninstall Script | |
if [ "${USER}" != "root" ]; then | |
echo "$0 must be run as root!" | |
exit 2 | |
fi | |
while true; do | |
read -p "Remove all Docker Machine VMs? (Y/N): " yn | |
case $yn in | |
[Yy]* ) docker-machine rm -f $(docker-machine ls -q); break;; | |
[Nn]* ) break;; | |
* ) echo "Please answer yes or no."; exit 1;; | |
esac | |
done | |
echo "Removing Applications..." | |
rm -rf /Applications/Docker.app | |
echo "Removing docker binaries..." | |
rm -f /usr/local/bin/docker | |
rm -f /usr/local/bin/docker-machine | |
rm -r /usr/local/bin/docker-machine-driver* | |
rm -f /usr/local/bin/docker-compose | |
echo "Removing boot2docker.iso" | |
rm -rf /usr/local/share/boot2docker | |
echo "Forget packages" | |
pkgutil --forget io.docker.pkg.docker | |
pkgutil --forget io.docker.pkg.dockercompose | |
pkgutil --forget io.docker.pkg.dockermachine | |
pkgutil --forget io.boot2dockeriso.pkg.boot2dockeriso | |
echo "All Done!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment