Created
May 23, 2020 17:44
-
-
Save elbow-jason/0e46c2b91287cec2e242a95bbee16d0d to your computer and use it in GitHub Desktop.
Remove Docker from OSX
This file contains 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 D |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment