Skip to content

Instantly share code, notes, and snippets.

@clodo
Created April 27, 2017 14:01
Show Gist options
  • Save clodo/246f72a6308294d4804e0ce16a4de90a to your computer and use it in GitHub Desktop.
Save clodo/246f72a6308294d4804e0ce16a4de90a to your computer and use it in GitHub Desktop.
Delete all docker containers and images
# Delete every Docker containers
# Must be run first because images are attached to containers
docker rm -f $(docker ps -a -q)
# Delete every Docker image
docker rmi -f $(docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment