Skip to content

Instantly share code, notes, and snippets.

@j-mueller
Created January 31, 2018 09:30
Show Gist options
  • Save j-mueller/9539906712f88a8af9c7df15d6658daf to your computer and use it in GitHub Desktop.
Save j-mueller/9539906712f88a8af9c7df15d6658daf to your computer and use it in GitHub Desktop.
Delete all docker images of the same name (with Powershell)
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