本文主要是介绍CentOS6.4安装Docker,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
首先,需要安装EPEL仓库
# wget http://mirrors.yun-idc.com/epel/6/i386/epel-release-6-8.noarch.rpm
# rpm -ivh epel-release-6-8.noarch.rpm
安装docker-io
# yum -y install docker-io
启动docker服务
# /etc/init.d/docker start
Starting cgconfig service: [ OK ]
Starting docker: [ OK ]
设置docker服务开机启动
# chkconfig docker on
测试是否正常工作
# docker run -i -t fedora /bin/bash
Unable to find image 'fedora' locally
fedora:latest: The image you are pulling has been verifiedbfe0bb6667e4: Downloading 6.48 MB/259.4 MB 51m9s
511136ea3c5a: Already exists
00a0c78eeb6d: Already exists
下载中,由于网速原因,等待比较长一段时间后
# docker run -i -t fedora /bin/bash
Unable to find image 'fedora' locally
fedora:latest: The image you are pulling has been verifiedbfe0bb6667e4: Pull complete
511136ea3c5a: Already exists
00a0c78eeb6d: Already exists
Status: Downloaded newer image for fedora:latest
bash-4.3#
可以看出我们已经运行在docker容器中了
可以像Fedora一样操作了
这篇关于CentOS6.4安装Docker的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!