Skip to content

Instantly share code, notes, and snippets.

@segilbert
Created March 17, 2017 18:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save segilbert/2f08ce200fca7e955af5d714deba547e to your computer and use it in GitHub Desktop.
Save segilbert/2f08ce200fca7e955af5d714deba547e to your computer and use it in GitHub Desktop.
Windows 2016 Docker Upgrade to 1.13
Stop-Service Docker
Remove-Item (Join-Path -Path $Env:ProgramData -ChildPath "docker") -Recurse -Force
Invoke-WebRequest https://get.docker.com/builds/Windows/x86_64/docker-1.13.0.zip -UseBasicParsing -OutFile docker.zip
Expand-Archive docker.zip -DestinationPath $Env:ProgramFiles -Force
Remove-Item -Force docker.zip
Start-Service Docker
@segilbert
Copy link
Author

@note this will remove ALL existing docker images locally on machine

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment