mac intellij 全家桶无法使用docker插件连接[解决方案]

mac intellij 全家桶无法使用docker插件连接

问题报错信息在intellij中的全家桶报错信息是

mac Can’t connect: com.intellij.docker.agent.Api TaskException: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? (Details: [2] No such file or directory)

(问题原因讨论)[https://github.com/docker/for-mac/issues/6529]
(解决方案原文连接)[https://github.com/docker/for-mac/issues/6531]

其中大佬推荐手动创建代码链接从而解决问题
sudo ln -s "$HOME/.docker/run/docker.sock" /var/run/docker.sock

我成功根据上述解决了问题解决后如下
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/weixin_43194885/article/details/130348114