skip to Main Content

Docker Installation fails on secure agent

I ran the following powershell script: write-output "Installing nuger package provider"; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls11 -bor [System.Net.SecurityProtocolType]::Tls12; Install-PackageProvider -name nuget -force; if (-not $?) { Write-Error 'Install package provider failed' exit 1 } write-output "Installing Docker module"; Install-Module DockerMsftProvider -Force; if…

VIEW QUESTION
Back To Top
Search