Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can Windows containers be hosted on Linux?

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

I am using the beta version of 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 .NET Standard. It allowed me to pack the 4.6.2 framework into a new library.

like image 413
Sebastian 506563 Avatar asked Feb 10 '17 11:02

Sebastian 506563


People also ask

Can Containers run on Linux?

Linux containers run natively on the operating system, sharing it across all of your containers, so your apps and services stay lightweight and run swiftly in parallel.

Can you mix Windows and Linux containers?

It works :) I was able to create a Linux MS SQL container, restore a Business Central database and connect a Windows Business Central container to it. To easily handle and manage them, I also created a Portainer container connecting to both parts because Docker Desktop can only handle one at the same time.

What is the difference between Windows containers and Linux containers?

The biggest difference is the container image. Windows images are larger than Linux images. When you run your container the Docker image is downloaded and it takes a bit longer than downloading a Docker image based on Linux.

Can Docker containers run on different OS?

You can run both Linux and Windows programs and executables in Docker containers. The Docker platform runs natively on Linux (on x86-64, ARM and many other CPU architectures) and on Windows (x86-64). Docker Inc. builds products that let you build and run containers on Linux, Windows and macOS.


7 Answers

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.

like image 91
evgenyl Avatar answered Oct 06 '22 01:10

evgenyl


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

like image 40
Karthikeyan VK Avatar answered Oct 06 '22 01:10

Karthikeyan VK


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.

like image 27
lvella Avatar answered Oct 06 '22 01:10

lvella


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.

like image 26
Slavik Meltser Avatar answered Oct 06 '22 02:10

Slavik Meltser


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)
like image 26
workaround Avatar answered Oct 06 '22 03:10

workaround


Unlike virtualization, containerization uses the same host OS. So the container built on Linux can not be run on Windows and vice versa.

In Windows, you have to take help of virtualization (using Hyper-V) to have same OS as your container's OS and then you should be able to run the same.

Docker for Windows is a similar application which is built on Hyper-V and helps in running Linux Docker containers on Windows. But as far as I know, there is nothing as such which helps run Windows containers on Linux.

like image 31
sunil bhardwaj Avatar answered Oct 06 '22 03:10

sunil bhardwaj


You can use Windows Containers inside a virtual machine (the guest OS should match the requirements - Windows 10 Pro or Windows Server 2016).

For example, you can use VirtualBox. Just enable Hyper-V inside SystemAccelerationParavirtualization Interface.

After that, if Docker doesn't start up because of an error, use the "Switch to Windows containers..." in the settings.

like image 7
BalintPogatsa Avatar answered Oct 06 '22 03:10

BalintPogatsa