Skip to content

Instantly share code, notes, and snippets.

@phaufe
Forked from DanielTheCoder/docker-pull-images.ps1
Created February 27, 2018 14:03
Show Gist options
  • Save phaufe/dd4fb4d27043ec63f53889714d51ed4b to your computer and use it in GitHub Desktop.
Save phaufe/dd4fb4d27043ec63f53889714d51ed4b to your computer and use it in GitHub Desktop.
Docker update all images using PowerShell
# 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