Docker使用系列三:CentOS 6.5 快速体验Ubuntu 14.04 可以ssh 登陆
所有操作都是用root账号在CentOS 6.5上完成,假设没有安装docker 依次使用root执行后面的命令就可以了 curl https://git.oschina.net/feedao/Docker_shell/raw/start/ali-centos.sh | sh yum -y install docker-io service docker start yum -y install debootstrap debootstrap --arch amd64 --include=vim,openssh-server,openssh-client trusty ubuntu-trusty http://mirrors.aliyun.com/ubuntu/ cd ubuntu-trusty && tar -c .|docker import - ubuntu1404-base docker build -t ubuntu1404-ssh https://git.oschina.net/feedao/Docker_shell/raw/start/trustyDockerfile docker run -d -p 127.0.0.1:33303:22 ubuntu1404-ssh 前面完成后,登陆容器: ssh root @127.0.0.1 -p 33303 输入密码