Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@halfvector
Created March 25, 2015 13:49
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 halfvector/63ed1da725685609acf1 to your computer and use it in GitHub Desktop.
Save halfvector/63ed1da725685609acf1 to your computer and use it in GitHub Desktop.
Cleanup untagged Docker images. Manual garbage collection to keep your drive from running out of space.
#!/bin/sh
echo "Removing untagged docker images.."
docker images -q -f dangling=true | xargs docker rmi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment