Skip to content

Instantly share code, notes, and snippets.

@chasevida
Created March 30, 2016 22:38
Show Gist options
  • Save chasevida/d3344a5c325c8583acb13edab888fcdf to your computer and use it in GitHub Desktop.
Save chasevida/d3344a5c325c8583acb13edab888fcdf to your computer and use it in GitHub Desktop.
Docker - Delete All Containers & Images
# Delete all containers
docker rm $(docker ps -a -q)
# Delete all images
docker rmi $(docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment