Created
September 30, 2016 10:58
-
-
Save mimikadze/38fe425151c017ea464d6c3da6ba7106 to your computer and use it in GitHub Desktop.
Clean the system from all unnamed Docker 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 rm $(docker ps -a | grep Exited | awk '{print $1}') | |
docker rmi $(docker images -f "dangling=true" -q) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment