Skip to content

Instantly share code, notes, and snippets.

@kkreft
Created June 7, 2018 19:55
Show Gist options
  • Save kkreft/c979f185c42f4da013a80e4314520f2c to your computer and use it in GitHub Desktop.
Save kkreft/c979f185c42f4da013a80e4314520f2c to your computer and use it in GitHub Desktop.
Stop and removing 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