Centos 6.5 安装 Docker
内核版本最好在 3.8 以上
yum 源要使用 EPEL 的
# rpm -qa | grep docker //检查系统是否安装了名字叫docker 的包
# yum remove docker //如果有docker包需要卸载(这个包虽然也叫docker 但不是我们要玩的docker,真正的docker包名叫做 docker-io )
# yum install docker-io //安装docker-io
安装之后运行docker命令
# docker -d //如果出现以下错误安装 device-mapper-libs 包即可解决
INFO[0000] +job serveapi(unix:///var/run/docker.sock)
INFO[0000] Listening for HTTP on unix (/var/run/docker.sock)
INFO[0000] WARNING: You are running linux kernel version 2.6.32-504.8.1.el6.x86_64, which might be unstable running docker. Please upgrade your kernel to 3.8.0.
docker: relocation error: docker: symbol dm_task_get_info_with_deferred_remove, version Base not defined in file libdevmapper.so.1.02 with link time reference
// 注意上面已经提示 内核版本信息,但只是 Warning 我们先不管它
# yum upgrade device-mapper-libs //安装这个包包,解决上面的Error 错误信息
解决这个问题后就可以玩了
docker -d //以daemon形式运行 (可以加到后台去,或者用service docker start)
# docker pull centos //拉取centos镜像, 貌似这个东东在国外 网络很差要等些时间才能下载完
centos:latest: The image you are pulling has been verified
511136ea3c5a: Pull complete
5b12ef8fd570: Pull complete
88f9454e60dd: Pull complete
Status: Downloaded newer image for centos:latest
测试下
# docker run -i -t --rm centos /bin/echo "hello world"
hello world //已经输出了hello world
到此安装就结束了 End.
本文出自 “superTaodi” 博客,请务必保留此出处http://supertaodi.blog.51cto.com/7256234/1619603
原文地址:http://supertaodi.blog.51cto.com/7256234/1619603