Files
runner-images-sangeeth/images/win/scripts/Installers/Install-Docker.ps1
Mikhail Timofeev 2ee29eddc1 [Windows] Add more docker tests and move K8s tools into single provisioner (#2583)
* Add more docker tests

* Rework tools installation and test

* remove docker tests from tools

* get back kind installation

* transform kind download link to string

* add Add-MachinePathItem after kind installation
2021-01-29 11:38:57 +03:00

15 lines
594 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
Invoke-PesterTests -TestFile "Docker" -TestName "Docker"