5

Docker Containers (which is basically application isolation, afaik) look handy but they are only for Linux. Even "Docker Container for Windows" basically just installs a Linux VM into VirtualBox on Windows.

So is there such a thing as a Docker Container like technology for Windows Server?

AngryHacker
  • 2,877
  • 6
  • 32
  • 33
  • 1
    [Parallels Containers for Windows](http://sp.parallels.com/products/parallels-containers-windows/) comes close but can be pricey. – Brian Jan 27 '15 at 17:59

3 Answers3

12

Not yet, no - it's been announced as a feature of the next version of Windows Server (Windows Server 2016).

Falcon Momot
  • 25,244
  • 15
  • 63
  • 92
Shane Madden
  • 114,520
  • 13
  • 181
  • 251
2

Containers are available in Windows Server 2016 Technical Preview 3.

ESV
  • 155
  • 5
  • How is this a different answer than the one that's already been here for a year? – MDMarra Sep 08 '15 at 20:52
  • 3
    @MDMarra I thought it was significant that, beyond the announcement, you can [download](https://www.microsoft.com/en-us/evalcenter/evaluate-windows-server-technical-preview) and use Windows Containers today. – ESV Sep 09 '15 at 16:32
2

To complete answer, starting Windows Server 2016 (Technical Preview 3 and >) you are able to create and run Windows based containers. Docker Engine has been implemented in Windows Server 2016 as well as Docker CLI. So you can manage Linux and Windows containers with the same tool (Docker CLI...). For sysadmin who prefer PowerShell, it's also possible to manage Windows Containers using PowerShell cmdlets. Just remember that Linux containers are running on top of a Linux OS (Docker Host) and Windows containers on top of a Windows Server OS (Docker host).

Additional informations

Regards

Stanislas