Files
runner-images-sangeeth/images/win/scripts/Installers/Install-Docker.ps1
Aleksandr Chebotov 00463a8fab [Windows] Add the list of installed PowerShell modules to documentation (#1266)
* documenation about powershell modules

* add powershell modules documenation

* add PSMODULES_ROOT_FOLDER
2020-07-23 16:32:41 +03:00

18 lines
663 B
PowerShell

################################################################################
## File: Install-Docker.ps1
## Desc: Install Docker.
## Must be an independent step becuase it requires a restart before we
## can continue.
################################################################################
Write-Host "Install-Package Docker"
Install-Package -Name docker -ProviderName DockerMsftProvider -Force
Start-Service docker
Write-Host "Install-Package Docker-Compose"
Choco-Install -PackageName docker-compose
Write-Host "Install Helm"
Choco-Install -PackageName kubernetes-helm
Invoke-PesterTests -TestFile "Tools" -TestName "Docker"