Created
January 4, 2016 17:56
-
-
Save lgs/078d98834fc7b237f62e to your computer and use it in GitHub Desktop.
Docker: clen up intermediate unamed images
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker images | egrep "<none>.*<none>" | awk '{print $3}' | while read image ; do docker rmi -f $image; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment