Centos8 安装otfker

安装docker时候遇到很多问题,在这里分享一下,

1.在国内使用docker官方的源真的是慢,

https://download.docker.com/linux/centos/#Docker官方源

[root@localhost ~]# cat /etc/yum.repos.d/Docker-ce.repo

[docker-ce-stable]

name=Docker CE Stable - $basearch

baseurl=https://mirrors.aliyun.com/docker-ce/linux/centos/7/$basearch/stable

enabled=1

gpgcheck=1

gpgkey=https://mirrors.aliyun.com/docker-ce/linux/centos/gpg

我这里用的阿里云的源

2.手动安装 container.io

yum install-y https://mirrors.aliyun.com/docker-ce/linux/centos/7/x86_64/edge/Packages/containerd.io-1.2.6-3.3.el7.x86_64.rpm

3.安装Docker 

install-y docker-ce

启动Docker

#systemctl start docker

4.验证 

Centos8 安装otfker

 

5.pull镜像

#docker search  镜像名字 //搜索镜像

#docker pull ubuntu  //从仓库下载镜像

你会发现pull非常慢 

Centos8 安装otfker

 

 解决

使用docker镜像加速

参考https://cr.console.aliyun.com/cn-hangzhou/instances/mirrors?accounttraceid=b05fd04232be4d4388b3da5bae1ab089aque

Centos8 安装otfker

 

 

# mkdir -p /etc/docker
# tee /etc/docker/daemon.json <<-'EOF'
{
  "registry-mirrors": ["https://p8sswz3o.mirror.aliyuncs.com"]
}
EOF
#systemctl daemon-reload
# systemctl restart docker

Centos8 安装otfker

 

 

 Centos8 安装otfker

4.安装docker-ce出错

 .Centos8 安装otfker

 

手动安装containerd.io

yum install-y https://mirrors.aliyun.com/docker-ce/linux/centos/7/x86_64/edge/Packages/containerd.io-1.2.6-3.3.el7.x86_64.rpm

在安装docker-ce

yum install -y docker-ce

解决

 

 

 

 

 

 

 

 

 

 

以上是 Centos8 安装otfker 的全部内容, 来源链接: utcz.com/a/61334.html

回到顶部