无法连接到powershell上的docker守护进程

nkkqxpd9  于 2023-04-29  发布在  Docker
关注(0)|答案(1)|浏览(127)

我目前在Docker Desktop(Windows 11 PC)上运行,并在Alpine上运行容器。

docker build /DIRECTORY/

上述命令会产生以下错误

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

帮助我弄清楚-使用PowerShell(终端)窗口。

iyr7buue

iyr7buue1#

看来你的码头不运行了。
您可以从以下位置查看docker日志:AppData\Local\Docker\log\vm\dockerd。原木
参考:https://docs.docker.com/config/daemon/logs/
您需要启动Docker才能访问Docker相关服务。

Restart-Service docker

一旦Docker守护进程运行,您就可以发出命令。
参考:https://linuxhint.com/resolve-docker-daemon-not-running/
希望这能帮上忙。

相关问题