Skip to content

Instantly share code, notes, and snippets.

@gtrias
Created January 10, 2016 22:16
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 gtrias/4d6331c6db0bc6ff03f4 to your computer and use it in GitHub Desktop.
Save gtrias/4d6331c6db0bc6ff03f4 to your computer and use it in GitHub Desktop.
Docker cleaning unused containers
docker rm `docker ps -a | grep Exited | awk '{print $1 }'`
docker rmi `docker images -aq`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment