Created
January 14, 2016 13:27
-
-
Save mlist/121f22c3f83a0d60e418 to your computer and use it in GitHub Desktop.
Deletes all docker images...
This file contains 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
sudo docker images -a | awk 'NR >= 2 {printf "%s ",$3}' | xargs sudo docker rmi -f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment