Skip to content

Instantly share code, notes, and snippets.

@coffeemakr
Last active April 1, 2017 10:11
Show Gist options
  • Save coffeemakr/8b5711b865e79886f6b65a769746e3f1 to your computer and use it in GitHub Desktop.
Save coffeemakr/8b5711b865e79886f6b65a769746e3f1 to your computer and use it in GitHub Desktop.
# Stop all container
docker ps -a -q | xargs docker stop
# Remove containers
docker ps -a -q | xargs docker rm
# Remove volumes (may delete required data)
docker volume ls -q | xargs docker volume rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment