CentOS 7安装Docker CE

  Docker CE 支持 64 位版本 CentOS 7,并且要求内核版本不低于 3.10。 CentOS 7 满足最低内核的要求,但由于内核版本比较低,部分功能(如 overlay2 存储层驱动)无法使用,并且部分功能可能不太稳定。

检查系统内核版本

1
uname -r

卸载旧版本

旧版本的 Docker 称为 docker 或者 docker-engine,使用以下命令卸载旧版本:

1
2
3
4
5
6
7
8
9
10
sudo yum remove docker \
docker-client \
docker-client-latest \
docker-common \
docker-latest \
docker-latest-logrotate \
docker-logrotate \
docker-selinux \
docker-engine-selinux \
docker-engine

使用 yum 安装

安装所需依赖包:

yum-utils提供yum-config-manager实用程序,devicemapper存储驱动程序需要device-mapper-persistent-datalvm2

1
2
3
sudo yum install -y yum-utils \
device-mapper-persistent-data \
lvm2

使用国内镜像加速安装

鉴于国内网络问题,强烈建议使用国内源,官方源请在注释中查看。执行下面的命令添加 yum 软件源:

1
2
3
4
5
sudo yum-config-manager --add-repo https://mirrors.ustc.edu.cn/docker-ce/linux/centos/docker-ce.repo


# 官方源
# sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo

安装 Docker CE

1
2
sudo yum makecache fast
sudo yum install docker-ce

启动 Docker CE

1
2
sudo systemctl enable docker
sudo systemctl start docker

测试 Docker 是否安装正确

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[root@hugo ~]#  docker run hello-world


Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
9bb5a5d4561a: Pull complete
Digest: sha256:f5233545e43561214ca4891fd1157e1c3c563316ed8e237750d59bde73361e77
Status: Downloaded newer image for hello-world:latest

Hello from Docker!
This message shows that your installation appears to be working correctly.

To generate this message, Docker took the following steps:
1. The Docker client contacted the Docker daemon.
2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
(amd64)
3. The Docker daemon created a new container from that image which runs the
executable that produces the output you are currently reading.
4. The Docker daemon streamed that output to the Docker client, which sent it
to your terminal.

To try something more ambitious, you can run an Ubuntu container with:
$ docker run -it ubuntu bash

Share images, automate workflows, and more with a free Docker ID:
https://hub.docker.com/

For more examples and ideas, visit:
https://docs.docker.com/engine/userguide/

镜像加速

鉴于国内网络问题,后续拉取 Docker 镜像十分缓慢,强烈建议安装 Docker 之后配置 国内镜像加速。

使用Docker提供的中国镜像

对于使用 systemd 的系统,请在 /etc/docker/daemon.json 中写入如下内容(如果文件不存在请新建该文件)

1
2
3
4
5
{
"registry-mirrors": [
"https://registry.docker-cn.com"
]
}

注意:一定要保证该文件符合 json 规范,否则 Docker 将不能启动。

使用DaoCloud加速器

  • 除了使用以上的Docker官方提供的中国镜像加速下载镜像,还可以使用DaoCloud加速器提供的镜像加速下载镜像。
    1
    curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://4094c782.m.daocloud.io

该脚本可以将 –registry-mirror 加入到你的 Docker 配置文件 /etc/docker/daemon.json 中。适用于 Ubuntu14.04、Debian、CentOS6 、CentOS7、Fedora、Arch Linux、openSUSE Leap 42.1。

重新启动服务

  • 使用以上的加速服务后重新启动docker。
    1
    2
    sudo systemctl daemon-reload
    sudo systemctl restart docker

检查加速器是否生效

配置加速器之后,如果拉取镜像仍然十分缓慢,请手动检查加速器配置是否生效,在命令行执行 docker info,如果从结果中看到了如下内容,说明配置成功。

1
2
3
4
docker info

Registry Mirrors:
https://registry.docker-cn.com/

相关链接

  1. docker官方文档:https://docs.docker.com/install/linux/docker-ce/centos/#install-docker-ce-1
  2. Docker —— 从入门到实践:https://yeasy.gitbooks.io/docker_practice/content/install/centos.html
文章目录
  1. 1. 检查系统内核版本
  2. 2. 卸载旧版本
  3. 3. 使用 yum 安装
    1. 3.1. 安装所需依赖包:
    2. 3.2. 使用国内镜像加速安装
    3. 3.3. 安装 Docker CE
    4. 3.4. 启动 Docker CE
  4. 4. 测试 Docker 是否安装正确
  5. 5. 镜像加速
    1. 5.1. 使用Docker提供的中国镜像
    2. 5.2. 使用DaoCloud加速器
    3. 5.3. 重新启动服务
    4. 5.4. 检查加速器是否生效
  6. 6. 相关链接
| 45.9k | |