在linux主机上运行windows容器

时间:2017-10-10 08:18:20

标签: linux windows docker cross-platform

我在Ubuntu 16.04上安装了docker CE,当我尝试:

ln -s /path/to/magento/installation/app /path/to/magento/installation/en/app
ln -s /path/to/magento/installation/skin /path/to/magento/installation/en/skin
ln -s /path/to/magento/installation/var /path/to/magento/installation/en/var
ln -s /path/to/magento/installation/js /path/to/magento/installation/en/js
ln -s /path/to/magento/installation/media /path/to/magento/installation/en/media
ln -s /path/to/magento/installation/app /path/to/magento/installation/nl/app
ln -s /path/to/magento/installation/skin /path/to/magento/installation/nl/skin
ln -s /path/to/magento/installation/var /path/to/magento/installation/nl/var
ln -s /path/to/magento/installation/js /path/to/magento/installation/nl/js
ln -s /path/to/magento/installation/media /path/to/magento/installation/nl/media
ln -s /path/to/magento/installation/app /path/to/magento/installation/ru/app
ln -s /path/to/magento/installation/skin /path/to/magento/installation/ru/skin
ln -s /path/to/magento/installation/var /path/to/magento/installation/ru/var
ln -s /path/to/magento/installation/js /path/to/magento/installation/ru/js
ln -s /path/to/magento/installation/media /path/to/magento/installation/ru/media
ln -s /path/to/magento/installation/app /path/to/magento/installation/fr/app
ln -s /path/to/magento/installation/skin /path/to/magento/installation/fr/skin
ln -s /path/to/magento/installation/var /path/to/magento/installation/fr/var
ln -s /path/to/magento/installation/js /path/to/magento/installation/fr/js
ln -s /path/to/magento/installation/media /path/to/magento/installation/fr/media
ln -s /path/to/magento/installation/app /path/to/magento/installation/de/app
ln -s /path/to/magento/installation/skin /path/to/magento/installation/de/skin
ln -s /path/to/magento/installation/var /path/to/magento/installation/de/var
ln -s /path/to/magento/installation/js /path/to/magento/installation/de/js
ln -s /path/to/magento/installation/media /path/to/magento/installation/de/media
ln -s /path/to/magento/installation/app /path/to/magento/installation/it/app
ln -s /path/to/magento/installation/skin /path/to/magento/installation/it/skin
ln -s /path/to/magento/installation/var /path/to/magento/installation/it/var
ln -s /path/to/magento/installation/js /path/to/magento/installation/it/js
ln -s /path/to/magento/installation/media /path/to/magento/installation/it/media

失败了:

docker pull microsoft/windowsservercore

是否可以在带有docker的linux主机上运行Windows映像?如果是的话,我应该怎么做?

1 个答案:

答案 0 :(得分:3)

与其他虚拟计算系统(如Virtual Box或VMWare)不同,Docker镜像很小,并不是完全独立的实体。

Docker镜像不包含操作系统内核,而是使用Docker主机的内核

这使得图像非常轻,但这也意味着您无法在Linux主机上运行Windows映像。