-
-
Save phaufe/dd4fb4d27043ec63f53889714d51ed4b to your computer and use it in GitHub Desktop.
Docker update all images using 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
# Pull all images based on https://gist.github.com/gte445e/85119eb6e93bd46fb2bbd3e3a362ce68 | |
docker images --format "{{.Repository}}" | Where-Object {$_ -ne "<none>"} | %{Write-Host "Pulling image: $_ ..."; docker pull $_} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment