You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The standard ubuntu install puts the docker api under a unix socket. The DOCKER_ENDPOINT should work with unix protocol: DOCKER_ENDPOINT=unix:///var/run/docker.sock lein uberimage ...
The current workaround is to bind the docker daemon to multiple ports: DOCKER_OPTS="--host=tcp://localhost:2375 --host=unix:///var/run/docker.sock
The text was updated successfully, but these errors were encountered:
I honestly thought java supported unix sockets. It seems that you are right. There's some unix socket libs for java, but I have no idea on how to integrate them, since I'm quite new to clojure.
Another possible workaround for now is to use socat to redir localhost:2375 to the docker socket.
The standard ubuntu install puts the docker api under a unix socket. The
DOCKER_ENDPOINT
should work with unix protocol:DOCKER_ENDPOINT=unix:///var/run/docker.sock lein uberimage ...
The current workaround is to bind the docker daemon to multiple ports:
DOCKER_OPTS="--host=tcp://localhost:2375 --host=unix:///var/run/docker.sock
The text was updated successfully, but these errors were encountered: