Last active
January 20, 2017 14:16
-
-
Save lishenzhi/453cf874a32872ca8d0860a01336e7ce to your computer and use it in GitHub Desktop.
docker toolbox uninstall
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 | |
# source: https://github.com/docker/toolbox/blob/master/osx/uninstall.sh | |
# 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 | |
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