NETWORK ADMINISTRATIONSWindows server

Instalación y Configuración de Docker en Windows Server 2019

Instalar un container con Power Shell.

Instalar un contenedor con Internet Information Server.

Comandos:

//POWER SHELL

1) Install-PackageProvider -Name Nuget -Force

2) Install-Module -Name DockerMsftProvider -Repository PSGallery -Force

3) Install-Package -Name Docker -ProviderName DockerMsftProvider

4) Restart-Computer -Force

——————————————-

5) docker search microsoft

6) docker pull microsoft/iis:windowsservercore

———————————————–

7) docker run -d -p 80:80 microsoft/iis:windowsservercore cmd

8) ipconfig

————————————————–

9) docker ps

10) docker stop (id)

11) docker rm (id)

12) docker images

source

windows server

Alice AUSTIN

Alice AUSTIN is studying Cisco Systems Engineering. He has passion with both hardware and software and writes articles and reviews for many IT websites.

Leave a Reply

Your email address will not be published. Required fields are marked *