Skip to content

Instantly share code, notes, and snippets.

@invalidusrname
Created April 11, 2014 19:23
Show Gist options
  • Save invalidusrname/10494172 to your computer and use it in GitHub Desktop.
Save invalidusrname/10494172 to your computer and use it in GitHub Desktop.
docker misc commands
# docker cleanup
docker ps -a | grep Exit | awk '{ print $1 }' | xargs docker rm
docker images | grep none | awk '{ print $3 }' | xargs docker rmi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment