Skip to content

Instantly share code, notes, and snippets.

@chw2054
Created June 17, 2015 14:04
Show Gist options
  • Save chw2054/7ee2630c7ad4eb3763a8 to your computer and use it in GitHub Desktop.
Save chw2054/7ee2630c7ad4eb3763a8 to your computer and use it in GitHub Desktop.
Stop / remove all Docker containers
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment