Docker 0.11.0 发布了,该版本也是 1.0 的候选发行版本。主要的改进内容包括:
SELinux support for mount and process labels
Linked containers can be accessed by hostname
Use the net --net flag to allow advanced network configuration such as host networking so that containers can use the host's network interfaces
Add a ping endpoint to the Remote API to do healthchecks of your docker daemon
Logs can now be returned with an optional timestamp
Docker now works with registries that support SHA-512
Multiple registry endpoints are supported to allow registry mirrors
详细的介绍请看官方博客。
Docker 是一个开源的应用容器引擎,让开发者可以打包他们的应用以及依赖包到一个可移植的容器中,然后发布到任何流行的 Linux 机器上,也可以实现虚拟化。容器是完全使用沙箱机制,相互之间不会有任何接口(类似 iPhone 的 app)。几乎没有性能开销,可以很容易地在机器和数据中心中运行。最重要的是,他们不依赖于任何语言、框架或包装系统。
项目主页:http://blog.docker.io/2014/05/docker-0-11-release-candidate-for-1-0/
下载地址:https://github.com/dotcloud/docker/
来自:开源中国社区