Skip to content

Instantly share code, notes, and snippets.

@balos1
Created January 12, 2016 07:07
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 balos1/eb718f229b62d4d5602b to your computer and use it in GitHub Desktop.
Save balos1/eb718f229b62d4d5602b to your computer and use it in GitHub Desktop.
Bash function to stop all docker containers
#docker stop all containers
function docker-stopall() { docker stop $(docker ps -a -q) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment