Created
January 31, 2018 09:30
-
-
Save j-mueller/9539906712f88a8af9c7df15d6658daf to your computer and use it in GitHub Desktop.
Delete all docker images of the same name (with Powershell)
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 hello-world -q | ForEach-Object { & "docker" "rmi" $_ } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment