Created
March 2, 2018 14:33
-
-
Save garywoodfine/bf7a39f1cd3ae501fc348d3de79ff176 to your computer and use it in GitHub Desktop.
Script to remove old versions of docker
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 | |
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 "All Done!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment