docker安装 on centos 7(64bit)

说明:

访问网站:http://www.docker-cn.com/

我们可以看到docker有2个版本社区版本(社区版本也就是CE版本)和 企业版,社区版是免费的,企业版是收费的

详细安装说明请参考官网: 社交APP开发找上海捌跃网络科技有限公司

https://docs.docker.com/install/linux/docker-ce/centos/

centos 7 docker安装过程记录(供参考)

前提条件:

如果你要安装docker CE版本,你的操作系统必须是Centos 7以上,否则你的部分功能不支持

1、Set up the repository

1.1

Install required packages. yum-utils provides the yum-config-manager utility, and device-mapper-persistent-data and lvm2 are required by the devicemapper storage driver.

[root@dokceron70 ~]# yum install -y yum-utils device-mapper-persistent-data lvm2

1.2

Use the following command to set up the stable repository. You always need the stable repository, even if you want to install builds from the edge or test repositories as well.

[root@dokceron70 ~]# yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo

此步骤执行完成之后/etc/yum.repos.d目录下会多出一个docker-ce.repo文件,请确保此文件里边有内容,由于download.docker.com是国外网站,所以这里下载的时候时好时坏,经常报[Errno 12]或[Errno 14]的错误,非常不爽,如果不行的话可以使用阿里云的链接[root@localhost yum.repos.d]# yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo

2、安装docker-CE版本

[root@dokceron70 ~]# yum -y install docker-ce

在6.8版本的docker-io在这里变为了docker-ce,这是6.8和7.0安装的不同

3、配置文件

cenos 7 里边docker的配置文件变成了daemon.json,文件位于/etc/docker,有的时候该目录下没有配置文件daemon.json,我们使用touch命令创建即可touch daemon.json

4、启动docker

[root@dockeron7 etc]# systemctl start docker

5、验证

[root@dockeron7 etc]# docker version

转自:http://blog.51cto.com/2638441/2316765

你可能感兴趣的:(docker安装 on centos 7(64bit))