Docker (二) :Centos中安装Docker
文章目录
Centos安装 Docker
准备工作
警告:切勿在没有配置 Docker YUM源的情况下直接使用 yum命令安装 Docker.
系统要求
centos 7+
➜ / uname -r
3.10.0-1062.el7.x86_64
➜ / cat /etc/redhat-release
CentOS Linux release 7.7.1908 (Core)
卸载旧版本
旧版本的 Docker 称为 docker
或者 docker-engine
,使用以下命令卸载旧版本:
$ sudo yum remove docker \
docker-client \
docker-client-latest \
docker-common \
docker-latest \
docker-latest-logrotate \
docker-logrotate \
docker-engine
安装必要的一些系统工具
$ sudo yum install -y yum-utils \
device-mapper-persistent-data \
lvm2
$ sudo yum-config-manager \
--add-repo \
http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
安装 Docker CE
$ sudo yum install docker-ce docker-ce-cli containerd.io
建立 docker 用户组
默认情况下,docker
命令会使用 Unix socket 与 Docker 引擎通讯。而只有 root
用户和 docker
组的用户才可以访问 Docker 引擎的 Unix socket。出于安全考虑,一般 Linux 系统上不会直接使用 root
用户。因此,更好地做法是将需要使用 docker
的用户加入 docker
用户组。
建立 docker
组:
$ sudo groupadd docker
将当前用户加入 docker
组:
$ sudo usermod -aG docker $USER
退出当前终端并重新登录,进行如下测试。
启动 Docker CE,测试 Docker 是否安装正确
➜ / systemctl start docker
➜ / systemctl enable docker
➜ / docker info
➜ / docker version
镜像加速
鉴于国内网络问题,后续拉取 Docker 镜像十分缓慢,强烈建议安装 Docker 之后配置 国内镜像加速
。
九 Docker 镜像加速器
概述
国内从 Docker Hub 拉取镜像有时会遇到困难,此时可以配置镜像加速器。Docker 官方和国内很多云服务商都提供了国内加速器服务,例如:
我们以 阿里云加速器为例进行介绍(填入自己的加速地址)。
➜ / sudo mkdir -p /etc/docker
➜ / sudo tee /etc/docker/daemon.json <<-'EOF'
heredocd> {
heredocd> "registry-mirrors": ["https://wmz5ch29.mirror.aliyuncs.com"]
heredocd> }
heredocd> EOF
{
"registry-mirrors": ["https://wmz5ch29.mirror.aliyuncs.com"]
}
➜ / sudo systemctl daemon-reload
➜ / sudo systemctl restart docker
检查加速器是否生效
配置加速器之后,如果拉取镜像仍然十分缓慢,请手动检查加速器配置是否生效,在命令行执行 docker info
,如果从结果中看到了如下内容,说明配置成功。
➜ / docker info
Registry Mirrors:
https://xxxxxxxxxx.mirror.aliyuncs.com/
测试 Docker 是否安装正确
➜ / docker pull hello-world
➜ / docker run hello-world
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/get-started/