如何在Kitematic Boot2docker linux上安装?

我已经通过Docker工具箱https://www.docker.com/toolbox中的boot2docker虚拟机安装教程。

使用窗口10作为我的基础,我设法使virtualbox从Linux default 4.0.9-boot2docker

当我开始尝试运行apt-getyum来安装NODE.JS或ASPNET之类的东西时,我被告知没有find这些文件。

最终目标是能够在我的本地环境中运行我的aspnet docker镜像。

我需要在我的Docker服务器上安装aspnet,node等…才能开始运行aspnet docker镜像? 如果是的话,我该如何将它们安装在没有apt-get或yum的linux版本中?

编辑 – 注意这是ASPNET的核心文件,似乎build议我需要在docker服务器上安装的东西。 https://dotnet.readthedocs.org/en/latest/getting-started/installing-core-linux.html也许我可以在Windows环境中的docker-build和从linux虚拟机运行docker,而不需要实际安装除我之外的任何东西docker形象?

使用docker你可以专注于使用应用程序,而不是安装。

您无需浪费时间安装应用程序,您可以直接拖动图像以在几分钟内获取node.jsaspnet环境。

所以回答你的问题,你可以通过pull命令准备好这些环境:

 docker pull node docker pull microsoft/aspnet