文章目录
- [1 安装前必读](#1 安装前必读)
- [2 安装Docker的详细步骤](#2 安装Docker的详细步骤)
- [3 配置镜像加速](#3 配置镜像加速)
1 安装前必读
在安装 Docker 之前,先说一下配置,我这里是Centos7 Linux 内核:官方建议 3.10 以上,3.8以上貌似也可。
注意:本文的命令使用的是 root 用户登录执行,不是 root 的话所有命令前面要加 sudo
使用 root 权限更新 yum 包(生产环境中此步操作需慎重)
yum -y update
如果之前安装过,先卸载旧版本的docker。此步骤跳过。
2 安装Docker的详细步骤
-
安装需要的软件包, yum-util 提供yum-config-manager功能,另两个是devicemapper驱动依赖
shellyum install -y yum-utils device-mapper-persistent-data lvm2
-
设置yum源
设置一个yum源,下面两个都可用
shell# (中央仓库) yum-config-manager --add-repo http://download.docker.com/linux/centos/docker-ce.repo #(阿里仓库) yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
此步骤设置失败也不影响,只是下载速度会慢。
-
查看可用版本有哪些
shellyum list docker-ce --showduplicates | sort -r
-
选择一个版本进行安装:
yum install docker-ce-版本号
不写版本号默认下载最新版本,如下:
shellyum -y install docker-ce
如果想安装指定版本的docker,后面跟上版本号,格式如下:
yum -y install docker-ce-24.0.6
安装成功如下图所示:
-
关闭系统防火墙。如果是生产环境开放指定端口
Docker应用需要用到各种端口,逐一去修改防火墙设置。非常麻烦,因此建议大家直接关闭防火墙,但是公司生产环境不能这样做。
shell# 关闭 systemctl stop firewalld # 禁止开机启动防火墙 systemctl disable firewalld
-
启动 Docker 并设置开机自启
shellsystemctl start docker systemctl enable docker
-
查看docker版本,验证是否安装成功
shelldocker version
3 配置镜像加速
docker官方镜像仓库网速较差,有的甚至访问不了,我们需要设置国内镜像服务。但现在绝大多数正规的镜像网站停用了。
亲测可用的仓库:https://hub.atomgit.com/repos
设置仓库:
shell
sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<-'EOF'
{
"registry-mirrors": ["https://hub.atomgit.com/repos"]
}
EOF
sudo systemctl daemon-reload
sudo systemctl restart docker
上面命令配置中:"registry-mirrors": ["https://hub.atomgit.com/repos"],后面的地址可以替换成认可可用的镜像仓库地址。
之前阿里云镜像仓库文档:https://cr.console.aliyun.com/cn-hangzhou/instances/mirrors。但现在不一定能用。
其他剩余可用仓库可在这自己尝试:https://linux.do/t/topic/114516