Skip to content

Instantly share code, notes, and snippets.

@agritsik
Created April 21, 2016 19:56
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 agritsik/eb94d7bb2632e91ab7922fc591298f34 to your computer and use it in GitHub Desktop.
Save agritsik/eb94d7bb2632e91ab7922fc591298f34 to your computer and use it in GitHub Desktop.
How to remove all docker containers and images
#!/usr/bin/env bash
# Remove all stopped containers
docker rm -v $(docker ps -a -q)
# Remove all untagged images
docker rmi $(docker images | grep "^<none>" | awk "{print $3}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment