Skip to content

Instantly share code, notes, and snippets.

@f-ewald
Created February 13, 2017 20:02
Show Gist options
  • Save f-ewald/aaecf4d8505bca330c612bd3b6d7a77a to your computer and use it in GitHub Desktop.
Save f-ewald/aaecf4d8505bca330c612bd3b6d7a77a to your computer and use it in GitHub Desktop.
Docker Cleanup
# stop all containers
docker-compose stop
# Remove all containers
docker rm -v $(docker ps -a -q)
# Remove all images
docker rmi $(docker images -q)
# Remove all volumes
docker volume rm $(docker volume ls -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment