AppCenter2.0的镜像同时支持kvm和docker,但由于需要实现
配置变更,不能直接使用已有的dockers镜像,需要进行一些改造哦,
镜像默认启动的进程不能应用本身的进程,
docker
search
centos
并没有加版本号,默认使用latest,等价于
docker
search
centos:latest
如果希望安装centos6,键入以下命令
docker
pull
centos:6
centos6和7都是继承centos
base
image的镜像,centos
base
image里面会调用你的centos里面的一些命令。
希望可以帮到你。