Skip to content

Instantly share code, notes, and snippets.

@jebeaudet
Created August 17, 2017 17:06
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 jebeaudet/d764cbb1df7e966120d10b20270b0981 to your computer and use it in GitHub Desktop.
Save jebeaudet/d764cbb1df7e966120d10b20270b0981 to your computer and use it in GitHub Desktop.
Clean docker containers, images and volumes
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
docker rmi $(docker images -a -q)
docker volume rm $(docker volume ls -f dangling=true -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment