Forked from gte445e/docker-pull-all-images.ps1
Last active
February 18, 2021 18:46
-
-
Save sincladk/eb11de6544d4fd9dae3d88990a6e41c7 to your computer and use it in GitHub Desktop.
Docker Pull/Update 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 | |
| docker images --format "{{.Repository}}:{{.Tag}}" | Where-Object {$_ -notmatch "<none>"} | %{docker pull $_} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment