Skip to content

Instantly share code, notes, and snippets.

@mattak
Created March 27, 2014 10:23
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 mattak/9804492 to your computer and use it in GitHub Desktop.
Save mattak/9804492 to your computer and use it in GitHub Desktop.
#!/bin/sh
# Delete all containers
sudo docker rm $(sudo docker ps -a -q)
# Delete all images
sudo docker rmi $(sudo docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment