Skip to content

Instantly share code, notes, and snippets.

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 anselmobattisti/a5b6dc69a0e046a464738573074acf10 to your computer and use it in GitHub Desktop.
Save anselmobattisti/a5b6dc69a0e046a464738573074acf10 to your computer and use it in GitHub Desktop.
Stop all docker container by some patterns
docker stop $(docker ps | egrep alfa | awk '{print $1}')
in this case alfa is the name of the image used to start the container , you can use anything that apears in docker ps, like, name or others
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment