今天在安装完docker后发现一个问题,运行 sudo docker run hello-world 报错,查询启动日志报错如下:
systemctl status docker.service #查询docker状态
通过查阅资料最终解决步骤如下:
首先在/etc/docker目录下修改daemon.json文件
sudo vi /etc/docker/daemon.json
内容如下,没有这个文件路径就自己建一个
{
"stry-mirrors":
["https://registry.dockercn.com","http://hubmirror.c.163.com","https://docker.mirrors.ustc.edu.cn"],
"debug":true
}
然后将改文件名改为 .com 结尾
mv daemon.json daemon.com
systemctl restart docker.service #重启docker
systemctl status docker.service #查询docker状态
我真 N13!,完美解决!!
运行当然也牟得问题啦!!!