“Instale Docker en Windows usando PowerShell” Código de respuesta

Instale Docker en Windows usando PowerShell

# Set the TLS version used by the PowerShell client to TLS 1.2.
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12;
Install-Module -Name DockerMsftProvider -Repository PSGallery -Force
Install-Package -Name docker -ProviderName DockerMsftProvider
#You need to restart the computer for this to be usable
Restart-Computer -Force
#After Reboot
Get-Package -Name Docker -ProviderName DockerMsftProvider
Find-Package -Name Docker -ProviderName DockerMsftProvider
Install-Package -Name Docker -ProviderName DockerMsftProvider -Update -Force
Start-Service Docker
Cortland Guse

Instale Docker en Windows PowerShell

Install-Module -Name DockerMsftProvider -Repository PSGallery -Force
CL

Respuestas similares a “Instale Docker en Windows usando PowerShell”

Preguntas similares a “Instale Docker en Windows usando PowerShell”

Más respuestas relacionadas con “Instale Docker en Windows usando PowerShell” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código