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命令时,就没有问题了
希望这个方法对你们有用
最后,我是得益于这位博主的文章来写的,感谢~
本文来自博客园,作者:King-DA,转载请注明原文链接:https://www.cnblogs.com/qingmuchuanqi48/articles/15259129.html

浙公网安备 33010602011771号