|
Hello, i'm trying to launch container w/ dockerode on Mac OS I'm getting an error :
The docker service run with colima ( https://github.com/abiosoft/colima ) The deployment of the image works with Thanks !! |
Replies: 7 comments
|
you also need to use |
|
Thanks @danisharora099 for your reply. I'm not sure where I should use |
Also, not sure if |
|
it doesn't work for me, I still get the ECONNREFUSED error. Are there any specific permissions to give ? |
|
Did you try it with |
Yes ! I get the same error ... |
|
@reptincel-cpu I had the same issue, but I discovered that Colima installs itself as a new As you can see, the socket path is different from the one used by Docker. You can either change the sudo ln -sf /var/run/docker.sock ~/.colima/default/docker.sock |
@reptincel-cpu I had the same issue, but I discovered that Colima installs itself as a new
docker context. That's the output of mydocker context lscommand:As you can see, the socket path is different from the one used by Docker. You can either change the
socketPathparam when instantiating a newDockerclass, or you can create a symlink to Colima's socket:sudo ln -sf /var/run/docker.sock ~/.colima/defa…