Can Windows containers be hosted on Linux?

246,120

Solution 1

TL;DR:

Q: Can Windows containers run on Linux?

A: No. They cannot.

Containers are using the underlying operating system resources and drivers, so Windows containers can run on Windows only, and Linux containers can run on Linux only.

Q: But what about Docker for Windows? Or other VM-based solutions?

A: Docker for Windows allows you to simulate running Linux containers on Windows, but under the hood a Linux VM is created, so still Linux containers are running on Linux, and Windows containers are running on Windows.

Bonus: Read this very nice article about running Linux docker containers on Windows.

Q: So, what should I do with a .NET Framework 462 application, if I would like to run in a container?

A: It depends. Consider the following recommendations:

  • If it is possible, move to .NET Core. Since .NET Core brings support to most major features of .NET Framework, and .NET Framework 4.8 will be the last version of .NET framework

  • If you cannot migrate to .NET Core - As @Sebastian mentioned - you can convert your libraries to .NET Standard, and have two versions of the application - one on .NET Framework 4.6.2, and one on .NET Core - it is not always obvious. Visual Studio supports it pretty well (with multi-targeting), but some dependencies can require extra care.

  • (Less recommended) In some cases, you can run Windows containers. Windows containers are becoming more and more mature, with better support in platforms like Kubernetes. But to be able to run .NET Framework code, you still need to run on base image of "Server Core", which occupies about 1.4 GB. In same rare cases, you can migrate your code to .NET Core, but still run on Windows Nano server, with an image size of 95 MB.

Leaving also the old updates for history

Update 2: 08.2018

If you are using Docker-for-Windows, you can run now both Windows and Linux containers simultaneously: Running Docker Windows and Linux Containers Simultaneously

Bonus: Not directly related to the question, but you can now run not only the Linux container itself, but also an orchestrator like Kubernetes: Kubernetes is Now Available In Docker Desktop Stable Channel

Updated at 2018:

Original answer in general is right, BUT several months ago, Docker added experimental feature LCOW (official GitHub repository).

From this post:

Doesn’t Docker for Windows already run Linux containers? That’s right. Docker for Windows can run Linux or Windows containers, with support for Linux containers via a Hyper-V Moby Linux VM (as of Docker for Windows 17.10 this VM is based on LinuxKit).

The setup for running Linux containers with LCOW is a lot simpler than the previous architecture where a Hyper-V Linux VM runs a Linux Docker daemon, along with all your containers. With LCOW, the Docker daemon runs as a Windows process (same as when running Docker Windows containers), and every time you start a Linux container Docker launches a minimal Hyper-V hypervisor running a VM with a Linux kernel, runc and the container processes running on top.

Because there’s only one Docker daemon, and because that daemon now runs on Windows, it will soon be possible to run Windows and Linux Docker containers side-by-side, in the same networking namespace. This will unlock a lot of exciting development and production scenarios for Docker users on Windows.

Original:

As mentioned in comments by @PanagiotisKanavos, containers are not for virtualization, and they are using the resources of the host machine. As a result, for now a Windows container cannot run "as-is" on a Linux machine.

But - you can do it by using VM - as it works on Windows. You can install a Windows VM on your Linux host, which will allow to run Windows containers.

With it, IMHO running it this way in a production environment will not be the best idea.

Also, this answer provides more details.

Solution 2

No, you cannot run Windows containers directly on Linux.

But you can run Linux on Windows.

Windows Server 2016 comes packaged with a base image of the Ubuntu OS (after the September 2016 beta service pack). That is the reason you can run Linux on Windows and not otherwise. Check out here. Finally, Linux Containers Could Run on Windows with Docker’s LinuxKit

You can change between OS containers Linux and Windows by right clicking on the Docker in the tray menu.

Enter image description here

Enter image description here

Solution 3

While Docker for Windows is perfectly able to run Linux containers, the converse, while theoretically possible, is not implemented due to practical reasons.

The most obvious one is, while Docker for Windows can run a Linux VM freely, Docker for Linux would require a Windows license in order to run it inside a VM.

Also, Linux is completely customizable, so the Linux VM used by Docker for Windows has been stripped down to just a few MB, containing only the bare minimum needed to run the containers, while the smallest Windows distribution available is about 1.5 GB. It may not be an impracticable size, but it is much more cumbersome than the Linux on Windows counterpart.

While it is certainly possible for someone to sell a Docker for Linux variation bundled with a Windows license and ready to run Windows containers under Linux (and I don't know if such product exists), the bottom line is that you can't avoid paying Windows vendor lock-in price: both in money and storage space.

Solution 4

Solution 1 - Using VirtualBox

As Muhammad Sahputra suggested in this post, it is possible to run Windows OS inside VirtualBox (using VBoxHeadless - without graphical interface) inside a Docker container.

Also, a NAT setup inside the VM network configurations can do a port forwarding which gives you the ability to pass-through any traffic that comes to and from the Docker container. This eventually, in a wide perspective, allows you to run any Windows-based service on top of Linux machine.

Maybe this is not a typical use case of a Docker container, but it definitely is an interesting approach to the problem.


Solution 2 - Using Wine

For simple applications and maybe more complicated, you can try to use wine inside a docker container.

This Docker Hub page may help you to achieve your goal.


I hope that Docker will release a native solution soon, like they did with docker-machine on Windows several years ago.

Solution 5

Containers use the OS kernel. Windows containers utilize processes in order to run. So theoretically speaking, Windows containers cannot run on Linux.

However there are workarounds utilizing VMstyle solutions.

I have found this solution which uses Vagrant and Packer on Mac, so it should work for Linux as well: https://github.com/StefanScherer/windows-docker-machine

This Vagrant environment creates a Docker Machine to work on your MacBook with Windows containers. You can easily switch between Docker for Mac Linux containers and the Windows containers.

Running bash commands

Enter image description here

building the headless Vagrant box

$ git clone https://github.com/StefanScherer/packer-windows
$ cd packer-windows

$ packer build --only=vmware-iso windows_2019_docker.json
$ vagrant box add windows_2019_docker windows_2019_docker_vmware.box

Create the Docker Machine

$ git clone https://github.com/StefanScherer/windows-docker-machine
$ cd windows-docker-machine
$ vagrant up --provider vmware_fusion 2019

Switch to Windows containers

$ eval $(docker-machine env 2019)
Share:
246,120
Sebastian 506563
Author by

Sebastian 506563

Updated on September 02, 2021

Comments

  • Sebastian 506563
    Sebastian 506563 over 2 years

    Is it possible to run Windows containers on Linux? The scenario is based on an application written in the .NET (old net) and the Linux user that wants to run this with Docker to provide a net462 written API on the localhost.

    I am using beta version from Docker Desktop for Windows.

    If no, then why can Windows run Linux containers and not vice-versa?


    As some time has passed and this question is a popular one. I'd like to add one note here that the workaround is to use the new netstandard. It allowed me to pack 4.6.2 framework into new library.

  • Ralf
    Ralf over 6 years
    The linked answer does not actually provide any details on this - it just explains how to run Linux containers on Windows (the inverse). It is possible to run Docker inside a Windows VM, but you need nested virtualization support for this. This means it works with VMware, but not Virtualbox.
  • daisy
    daisy about 6 years
    The OP is looking to run Windows containers on Linux servers instead, so this one does not answer the question. But I don't like people that gives downvote without a comment, so I'm giving an upvote
  • Stefan Steiger
    Stefan Steiger almost 6 years
    This is true - but it has nothing to do with the question. Plus MS-SQL is more than just the engine (which on Linux comes without filestream or R by the way - so it's not even the entire engine).
  • Stefan Steiger
    Stefan Steiger almost 6 years
    @Karthikeyan V: Because it's not an answer to the question.
  • dagelf
    dagelf almost 6 years
    You have to think one step ahead... why is he asking? If he is asking because he wants to run one of these: voila.
  • Stefan Steiger
    Stefan Steiger almost 6 years
    Possible. But IMHO, he's probably asking the question because he has already done that, and now he has to run things like SSRS/SSAS or some web-form control, such as ReportViewer, on Linux.
  • j123b567
    j123b567 over 5 years
    Docker image microsoft/dotnet is for .Net Core, which is something completely different from old .Net 4.x so you can't run app designed for old .Net on .Net Core
  • Slavik Meltser
    Slavik Meltser over 5 years
    They are supporting .NET Core and NOT .NET - these are two completely different environments.
  • Kyberias
    Kyberias about 5 years
    A lot of words in the answer but it doesn't seem to answer the question.
  • Amorphous
    Amorphous about 5 years
    Its not answer to the question. It should not be so highly ranked
  • Ani
    Ani almost 5 years
    This is NOT an answer to this question. Running docker on Linux is MARKEDLY different from running docker on Windows. Why is this marked as an answer?\
  • Clifford Fajardo
    Clifford Fajardo almost 5 years
    Containers = efficiently run diff isolated apps (that were built for a specific OS), less memory, disk space, overhead, more efficient hardware utilization VMs = use case ..run whole OS's for various use cases...,hardware utilization is good (I don't need to buy a diff machine for each OS..if I actually need multiple OS for my use case), but hard utilization not as great compared to containers. Great video by CTO of Joyent: youtube.com/watch?v=coFIEH3vXPw
  • StingyJack
    StingyJack over 4 years
    I'm not sure what it said before but the first statement says you cant and the second one says you can. Its probably a missing or something that is confusing.
  • SLCH000
    SLCH000 over 4 years
    And on windows you cannot communicate between windows and linux containers. Here's the full list of limitations docs.docker.com/docker-for-windows/networking/…
  • Will
    Will almost 4 years
    It appears you can now run Microsoft Windows as a Docker based container - see Windows base os images. According to the page these containers must run on a Windows host but they appear to be Docker images.