欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

安装指定版本的dokcer

程序员文章站 2022-07-14 10:41:37
...

安装 Docker

1、安装依赖环境

[[email protected] ~]# yum install -y yum-utils device-mapper-persistent-data lvm2

2、安装 Docker 源

[[email protected] ~]# yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo

3、安装 Docker-CE

[[email protected] ~]# yum makecache fast
[[email protected] ~]# yum -y install docker-ce

4、启动 Docker 服务

[[email protected] ~]# systemctl start docker

5、安装指定版本的Docker-CE

1、查找Docker-CE的版本
[[email protected] ~]# yum list docker-ce.x86_64 --showduplicates | sort -r
Loading mirror speeds from cached hostfile
Loaded plugins: branch, fastestmirror, langpacks
docker-ce.x86_64            17.03.1.ce-1.el7.centos            docker-ce-stable
docker-ce.x86_64            17.03.1.ce-1.el7.centos            @docker-ce-stable
docker-ce.x86_64            17.03.0.ce-1.el7.centos            docker-ce-stable
Available Packages
2、安装指定版本的Docker-CE
[[email protected] ~]# yum -y install docker-ce-[VERSION]

3、配置docker镜像加速

[[email protected] ~]# vim /etc/docker/daemon.json
{
  "registry-mirrors": ["https://mb8n4btz.mirror.aliyuncs.com"]
}