docker pull报错:error pulling image configuration: download failed after attempts=6: dial tcp 174.36.1
朋友们,先看看你的SElinux和防火墙是不是开着。于是我到网上查了查,添加一个加速的国内源就可以。首先确定我的是全部关了的。
·
朋友们,先看看你的SElinux和防火墙是不是开着
报错如图
首先确定我的是全部关了的
SElinux命令
getenforce #查看SElinux状态
setenforce 0 #设置SElinux为宽松模式
关闭防火墙
systemctl stop firewalld
于是我到网上查了查,添加一个加速的国内源就可以
mkdir -p /etc/docker
tee /etc/docker/daemon.json <<-'EOF'
{
"registry-mirrors": ["https://yxzrazem.mirror.aliyuncs.com"]
}
EOF
sudo systemctl daemon-reload
sudo systemctl restart docker
随后执行成功
更多推荐
已为社区贡献1条内容
所有评论(0)