I feel like I'm getting mixed signals about Docker DataCenter on Windows Server 2016. There are some notes about it running natively on Windows, but is this so and is there any estimates to when?
Asked
Active
Viewed 507 times
1 Answers
2
It was announced back in September 2016, Read about its official launch here at docker blog
https://blog.docker.com/2016/09/dockerforws2016/
Few things to consider while running Docker on Windows server 2016 :
Install the feature "Containers" from adds roles and features .
Install the container support, before installing docker you need to install this support.
open powershell and run :
Install-Module -Name DockerMsftProvider -Repository PSGallery -Force
3. Install Docker
Install-Package -Name docker -ProviderName DockerMsftProvider
4. Restart your server
Restart-Computer -Force
you are good to go.
Hope this will help.

Shashi Bhushan
- 670
- 4
- 14
-
Yes docker enterprise for WS2016 has been announced, but I am asking specifically about DataCenter, which to my understanding, should at some point become available for WS2016 – user1340582 Aug 14 '17 at 04:07
-
Yeah Docker datacenter for windows server 2016 is still not confirmed , They announced in last year Nov that Docker Datacenter is soon coming with Docker Datacenter for Windows (Beta) and you can sign up for the beta here –> https://goto.docker.com/MicrosoftWindowsServers2016_LP.html – Shashi Bhushan Aug 16 '17 at 18:41