Created
March 17, 2017 18:34
-
-
Save segilbert/2f08ce200fca7e955af5d714deba547e to your computer and use it in GitHub Desktop.
Windows 2016 Docker Upgrade to 1.13
This file contains 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
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@note this will remove ALL existing docker images locally on machine