The mac intellij family bucket cannot be connected using the docker plugin [solution]

The mac intellij family bucket cannot be connected using the docker plugin

The error message of the problem is reported in the family bucket in 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)

(discussion on the cause of the problem)[https://github.com/docker/for-mac/issues/6529]
(link to the original solution)[https://github.com/docker/for-mac/issues/6531]

Among them, the boss recommends manually creating code links to solve the problem
sudo ln -s "$HOME/.docker/run/docker.sock" /var/run/docker.sock

I successfully solved the problem according to the above After solving it is as follows
insert image description here

Guess you like

Origin blog.csdn.net/weixin_43194885/article/details/130348114