使用 docker 快速切换 iojs 版本
using docker for quick switching iojs version
可以Docker用于"dockerizing"iojs或nodejs(例如,在它们之间快速切换)?
而且,对于任何应用程序的 docker 化,没有必要使用整个 OS (ubuntu) 的图像,对吗?
Can be Docker used for "dockerizing" iojs or nodejs (for, for example, quick switching between them)?
当然,如文章“Up and running with io.js and Docker", based on the iojs image.
所示
And, for dockerizing any app it's not necessary using image of whole OS (ubuntu), right?
仅当您的应用程序依赖于 OS 文件系统而不是(通过静态链接)Linux 主机时 kernel
例如,用 Go 编译的应用程序 (golang.org) can run in an empty container (the scratch container, see "Building Minimal Docker Containers for Go Applications")
可以Docker用于"dockerizing"iojs或nodejs(例如,在它们之间快速切换)?
而且,对于任何应用程序的 docker 化,没有必要使用整个 OS (ubuntu) 的图像,对吗?
Can be Docker used for "dockerizing" iojs or nodejs (for, for example, quick switching between them)?
当然,如文章“Up and running with io.js and Docker", based on the iojs image.
所示And, for dockerizing any app it's not necessary using image of whole OS (ubuntu), right?
仅当您的应用程序依赖于 OS 文件系统而不是(通过静态链接)Linux 主机时 kernel
例如,用 Go 编译的应用程序 (golang.org) can run in an empty container (the scratch container, see "Building Minimal Docker Containers for Go Applications")