Docker官方安装教程网站:Install Docker Engine on CentOS | Docker Docs
cat /etc/redhat-release
yum -y install gcc
yum -y install gcc-c++
yum install -y yum-utils
!官网给的是这条命令:yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo。但是是国外的,下载很容易出问题,连接超时。
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
yum makecache fast
yum -y install docker-ce docker-ce-cli containerd.io
systemctl start docker
第一次安装一定要启动docker,然后没返回消息就代表安装成功了。
docker version
docker run hello-world
出现hello from docker!代表本机安装成功!
????????2.1 登陆阿里云开发者平台
????????2.2 点击控制台
????????2.3 选择容器镜像服务
????????2.4 获取加速器地址
mkdir -p /etc/docker
tee /etc/…………………………去阿里云粘贴自己的,这个只是模板
{
"registry-mirrors": ["https://{自已的编码}.mirror.aliyuncs.com"]
}
systemctl daemon-reload
systemctl restart docker
5.启动Docker后台容器(测试运行 hello-world)
docker run hello-world
systemctl stop docker
yum remove docker-ce docker-ce-cli containerd.io
rm -rf /var/lib/docker
rm -rf /var/lib/containerd
———————————————————————————————————————————
安装完后,docker的详细笔记可以看这个文章:尚硅谷Docker基础篇和Dockerfile超详细整合笔记-CSDN博客