Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
时间: 2023-09-28 08:07:14 浏览: 39
解决docker报错Cannot connect to the Docker daemon at unix
5星 · 资源好评率100%
这个错误通常是由于 Docker 服务没有启动导致的。你可以通过以下命令来启动 Docker 服务:
```
sudo service docker start
```
如果你使用的是 macOS 或者 Windows 系统,那么你需要在 Docker Desktop 应用程序中启动 Docker 服务。如果问题仍然存在,请尝试重启 Docker 服务或者重新安装 Docker。
阅读全文