Skip to content

Instantly share code, notes, and snippets.

@hancengiz
Created February 15, 2017 08:39
Show Gist options
  • Save hancengiz/fa5e0e97ca33d8513a80def8d88ff7d8 to your computer and use it in GitHub Desktop.
Save hancengiz/fa5e0e97ca33d8513a80def8d88ff7d8 to your computer and use it in GitHub Desktop.
One liner to stop / remove all of 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