3docker安装 on centos 7(64bit)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了3docker安装 on centos 7(64bit)相关的知识,希望对你有一定的参考价值。

说明:
访问网站:http://www.docker-cn.com/
我们可以看到docker有2个版本社区版本(社区版本也就是CE版本)和 企业版,社区版是免费的,企业版是收费的
技术分享图片

详细安装说明请参考官网:
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.
[[email protected] ~]# 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.
[[email protected] ~]# 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]的错误,非常不爽,如果不行的话可以使用阿里云的链接[[email protected] yum.repos.d]# yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo

2、安装docker-CE版本
[[email protected] ~]# 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
[[email protected] etc]# systemctl start docker

5、验证
[[email protected] etc]# docker version
技术分享图片

以上是关于3docker安装 on centos 7(64bit)的主要内容,如果未能解决你的问题,请参考以下文章

NIC Teaming on CentOS 7 with nmcli

influxdb-1.7.2.x86_64安装 install influxdb-1.7.2.x86_64 on RedHat & CentOS

GIS on CentOS 7 之 PostgreSQL & PostGIS

NIS server on centOS 7

centos6.3安装python2.7, pip2.7, mysql

How to install Zabbix5.0 LTS version with Yum on the CentOS 7.8 system?