出现问题
[root@zh ~]#
[root@zh ~]#
[root@zh ~]# yum -y install docker
上次元数据过期检查:0:08:25 前,执行于 2020年08月05日 星期三 20时28分10秒。
未找到匹配的参数: docker
错误:没有任何匹配: docker
[root@zh ~]#
解决办法
首先测试一下是否能ping通外网:
[root@zh ~]#
[root@zh ~]#
[root@zh ~]#
[root@zh ~]# ping www.baodu.com
PING www.baodu.com (115.29.223.128) 56(84) bytes of data.
64 bytes from 115.29.223.128 (115.29.223.128): icmp_seq=1 ttl=55 time=23.7 ms
64 bytes from 115.29.223.128 (115.29.223.128): icmp_seq=2 ttl=55 time=23.6 ms
64 bytes from 115.29.223.128 (115.29.223.128): icmp_seq=3 ttl=55 time=23.7 ms
64 bytes from 115.29.223.128 (115.29.223.128): icmp_seq=4 ttl=55 time=23.6 ms
^C
--- www.baodu.com ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 8ms
rtt min/avg/max/mdev = 23.637/23.660/23.700/0.024 ms
[root@zh ~]#
是可以的。
安装源:
yum install https://download.docker.com/linux/fedora/30/x86_64/stable/Packages/containerd.io-1.2.6-3.3.fc30.x86_64.rpm
重新测试:
是可以的。
附:centos8安装docker的步骤
1. 下载docker-ce的repo
curl https://download.docker.com/linux/centos/docker-ce.repo -o /etc/yum.repos.d/docker-ce.repo
2. 安装依赖(这是相比centos7的关键步骤)
yum install https://download.docker.com/linux/fedora/30/x86_64/stable/Packages/containerd.io-1.2.6-3.3.fc30.x86_64.rpm
3. 安装docker-ce
yum install docker-ce -y
4. 启动docker
systemctl start docker
总结
到此这篇关于Centos8无法安装docker问题解决方法的文章就介绍到这了,更多相关Centos8无法安装docker内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!