Skip to content

Instantly share code, notes, and snippets.

@colin-nolan
Last active July 21, 2017 14:56
Show Gist options
  • Save colin-nolan/a057591f914f458558e54404eb85b740 to your computer and use it in GitHub Desktop.
Save colin-nolan/a057591f914f458558e54404eb85b740 to your computer and use it in GitHub Desktop.
Force kills all Docker machines
docker-machine ls -q | while read machineName; do
docker-machine rm -f "$machineName"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment