目录
yum install -y yum-utils
yum-config-manager --add-repo \
https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
yum install -y docker-ce
systemctl start docker
systemctl enable docker
systemctl status docker
显示“active(running)”,Docker安装并启动成功
7.1 配置阿里云镜像仓库地址
tee /etc/docker/daemon.json <<-'EOF'
{
"registry-mirrors": ["https://8kehkoh8.mirror.aliyuncs.com"]
}
EOF
7.2 重新加载守护进程
systemctl daemon-reload
7.3 重启Docker服务
systemctl restart docker
7.4 拉取并运行hello-world镜像
docker run hello-world
7.5 查看hello-world镜像
docker images
至此,Docker已经安装配置成功,可以在RHEL9上愉快使用啦~