Skip to content

Instantly share code, notes, and snippets.

@sincladk
Forked from gte445e/docker-pull-all-images.ps1
Last active February 18, 2021 18:46
Show Gist options
  • Select an option

  • Save sincladk/eb11de6544d4fd9dae3d88990a6e41c7 to your computer and use it in GitHub Desktop.

Select an option

Save sincladk/eb11de6544d4fd9dae3d88990a6e41c7 to your computer and use it in GitHub Desktop.
Docker Pull/Update Images using PowerShell
# 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