Skip to content

Instantly share code, notes, and snippets.

@obazoud
Created December 11, 2014 20:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save obazoud/b42801105ab608b432dd to your computer and use it in GitHub Desktop.
Save obazoud/b42801105ab608b432dd to your computer and use it in GitHub Desktop.
Purge Docker
#!/bin/bash
docker stop $(docker ps -a -q)
docker rm -f $(docker ps -a -q)
docker rmi -f $(docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment