Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ericzumba/21fb5ac5aeab110d94c796e90c841dfa to your computer and use it in GitHub Desktop.
Save ericzumba/21fb5ac5aeab110d94c796e90c841dfa to your computer and use it in GitHub Desktop.
remove all docker containers and images
# copied from https://techoverflow.net/blog/2013/10/22/docker-remove-all-images-and-containers/
#!/bin/bash
# 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