背景
今天想打下vulhub靶场却发现一直启动不起来,后来docker run hello-world也启动不起来,后来看来下日志配合ai分析出来是403拒接访问,我是醉了,一直以为是网络连接的问题,还一直搓搓配置代理。。。。
报错显示:
error pulling image configuration: download failed after attempts=6: dial tcp 31.13.85.53:443: i/o timeout
报错原因
python
┌──(root㉿kali)-[/home/.../Desktop/vulhub/mysql/CVE-2012-2122]
└─# cat /etc/docker/daemon.json
{
"registry-mirrors": ["https://xxx.mirror.aliyuncs.com"]
}
因该是以前看来网上的文章,一段乱复制的导致的,配置出错,这个配置因该是阿里云的加速镜像的地址,xxx因该是让自己填的。。。
解决方案
-
重新写配置文件即可
-
vim /etc/docker/daemon.json
- 按下i键,复制粘贴进去
python{ "registry-mirrors": [ "https://hub.uuuadc.top", "https://docker.anyhub.us.kg", "https://dockerhub.jobcher.com", "https://dockerhub.icu", "https://docker.ckyl.me", "https://docker.awsl9527.cn" ] }
- 按下Esc键,再按下冒号,输入wq回车即可
-
-
重启服务,
sudo systemctl restart docker