Skip to content

Instantly share code, notes, and snippets.

@douglampe
Created August 14, 2017 14:34
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 douglampe/1f6bb7912e8b01cbdcae4acda435278f to your computer and use it in GitHub Desktop.
Save douglampe/1f6bb7912e8b01cbdcae4acda435278f to your computer and use it in GitHub Desktop.
Bash script to stop and 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