Docker,  Hello IT,  Windows

Install Docker EE on Windows server

I had some issues to find the correct info to install Docker EE on Windows server and lost to much time on trial and error, so I decided to share how I did it.

The Docker EE license is included in Windows server licenses, so you don’t need extra licenses from Docker.

Install Docker EE on Windows server via PowerShell

Open PowerShell and execute the following commands

   Install-WindowsFeature -Name Containers 
   Restart-Computer -Force  

Wait until the server is rebooted and then execute the next commands in PowerShell

   Install-Module -Name DockerMsftProvider -Repository PSGallery -Force
   Install-Package -Name docker -ProviderName DockerMsftProvider -Force -RequiredVersion 19.03 
   Start-Service docker 

Test your Docker EE installation

You can startup a hello world container via powershell to test your Docker EE installation

   Docker container run hello-world:nanoserver 
Docker Hello World

Here you can find my other IT related posts

signature

Laat een antwoord achter

Het e-mailadres wordt niet gepubliceerd. Vereiste velden zijn gemarkeerd met *