mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-17 23:36:44 +00:00
* 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
15 lines
594 B
PowerShell
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" |