Skip to content

Instantly share code, notes, and snippets.

@RyanNutt
Created October 11, 2015 17:17
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 RyanNutt/6aa2d5a7eaeb15309e16 to your computer and use it in GitHub Desktop.
Save RyanNutt/6aa2d5a7eaeb15309e16 to your computer and use it in GitHub Desktop.
Remove all running docker containers - From https://coderwall.com/p/ewk0mq/stop-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