-
On first run, I was getting the error in the title. Using docker desktop for mac. Docker was running. |
Beta Was this translation helpful? Give feedback.
Answered by
meeech
Jul 19, 2023
Replies: 1 comment 2 replies
-
Solution I found: the
if you prefer, it looks like
|
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
meeech
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Solution I found:
the
docker.sock
was not in/var/run/docker.sock
but in/Users/<username>/.docker/run/docker.sock
so you can doDOCKER_HOST=unix:///Users/<username>/.docker/run/docker.sock lazydocker
.if you prefer, it looks like
ln -s
will work as wellsudo ln -s /Users/<username>/.docker/run/docker.sock /var/run/docker.sock