阿里云安装使用 Docker

因为用的是 CentOS 7,所以我就直接

yum install docker.io


安装成功了,但是,当我使用

docker images


查看镜像时,发现提示错误:

Cannot connect to the Docker daemon. Is 'docker -d' running on this host?


那就试试

docker -d


结果,又提示出错了,看上去像是网络的问题。

根据 内事不懂找度娘,外事不明问谷歌 的原则,我百度了很多,终于找到了一个比较简单的解决方法。

根据:

http://www.linuxidc.com/Linux/2014-11/109107.htm
http://bbs.aliyun.com/read/152090.html?ordertype=desc&displayMode=1


这两个解答的结合,我使用了下面这条命令:

docker --bip=192.168.17.1/24 -d &


然后再启动 docker

service docker start
docker images


OK,docker 一切正常。

问题1:

Repository ubuntu already being pulled by another client. Waiting.


解决方法:

service docker restart