一、安装依赖
yum install -y yum-utils \
device-mapper-persistent-data \
lvm2
二、设置仓库
yum-config-manager \
--add-repo \
https://download.docker.com/linux/centos/docker-ce.repo
三、安装 Docker Engine-Community
yum install docker-ce docker-ce-cli containerd.io
四、启动 Docker
systemctl start docker
五、验证是否成功, 通过运行 hello-world 映像来验证是否正确安装了 Docker Engine-Community 。
docker run hello-world
六、查看docker版本
docker --version
七、镜像加速
1、如果是官方的镜像源,会非常的慢,可以注册阿里云账号申请加速源地址
https://cr.console.aliyun.com/cn-hangzhou/instances/mirrors
2、通过添加 文件:/etc/docker/daemon.json,添加如下内容,地址为你申请的加速阿里云地址:
{"registry-mirrors":["https://c9e2a8sh.mirror.aliyuncs.com"]}
3、重启服务:
systemctl daemon-reload
systemctl restart docker
再次 docker pull xx,你会发现下载的飞快。
八、至此,docker已完成安装,可以通过 docker --help查看相关命令使用