Skip to content

Instantly share code, notes, and snippets.

@DanielTheCoder
Created February 26, 2018 21:51
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save DanielTheCoder/f358aaf6211ba1c180fba6c16266ea5d to your computer and use it in GitHub Desktop.
Save DanielTheCoder/f358aaf6211ba1c180fba6c16266ea5d 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