Last active
April 27, 2018 07:54
-
-
Save emakarov/5a76573c22e52b74e10390779106f4ce to your computer and use it in GitHub Desktop.
Delete untagged docker images (with force)
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
# this removes <none> docker images | |
docker rmi -f $(docker images -f "dangling=true" -q) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment