Skip to content

Instantly share code, notes, and snippets.

@carlossg
Created October 1, 2014 16:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carlossg/5e1e91fabcca52fb0301 to your computer and use it in GitHub Desktop.
Save carlossg/5e1e91fabcca52fb0301 to your computer and use it in GitHub Desktop.
#!/bin/sh
# kill it all!!!
#docker ps | awk '{print $1}' | grep -v CONTAINER | xargs docker kill
docker rm $(docker ps -a -q)
docker rmi $(docker images | grep "^<none>" | awk '{print $3}')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment