Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?

1. 例如我查看版本信息

2.重启容器

3. systemctl status docker 查看docker状态也发现错误:

最后解决问题方法是:

进入 /etc/docker,没有daemon.json文件就自己新建一个:

cd /etc/docker


编辑daemon.json文件:
加入这段代码:

{
 "registry-mirrors": ["https://registry.docker-cn.com"]
}


然后重启docker:

systemctl restart docker.service

再使用docker命令时,就没有问题了
希望这个方法对你们有用
最后,我是得益于这位博主的文章来写的,感谢~

posted @ 2021-09-12 16:45  King-DA  阅读(382)  评论(0)    收藏  举报