Skip to content

Instantly share code, notes, and snippets.

@chezbut
Forked from jcberthon/docker-img-gc
Created May 24, 2017 04:20
Show Gist options
  • Save chezbut/6318d335ea3318d6d513faec2bdc9230 to your computer and use it in GitHub Desktop.
Save chezbut/6318d335ea3318d6d513faec2bdc9230 to your computer and use it in GitHub Desktop.
Remove dangling docker images and volumes
docker images --quiet --filter=dangling=true | xargs --no-run-if-empty docker rmi
docker volume ls --quiet --filter=dangling=true | xargs --no-run-if-empty docker volume rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment