mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-18 15:56:47 +00:00
* documenation about powershell modules * add powershell modules documenation * add PSMODULES_ROOT_FOLDER
18 lines
663 B
PowerShell
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" |