Please use: https://gist.github.com/jeremiahsnapp/9630765
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
Configuration ContainerHostDsc | |
{ | |
# Set up general parameters used to determine paths where Docker will | |
# be installed to and downloaded from. | |
$ProgramFiles = $ENV:ProgramFiles | |
$DockerPath = Join-Path -Path $ProgramFiles -ChildPath 'Docker' | |
$DockerZipFileName = 'docker.zip' | |
$DockerZipPath = Join-Path -Path $ProgramFiles -ChildPath $DockerZipFilename | |
$DockerUri = 'https://download.docker.com/components/engine/windows-server/cs-1.12/docker.zip' |