simple-docker-ui
simple-docker-ui copied to clipboard
Connecting on Linux
The wiki shows using unix:///var/run/docker.sock, but I don't understand the syntax to enter this. I'm using this remotely, obviously, from a Linux laptop. So how should I connect by a direct IP address?
I'm new to Docker, this may be an obvious answer.
this unix:///var/run/docker.sock syntaxis is for connecting to a local Docker using the socket connection.
For your case, you will need to use http://IP:port, and your remote Docker will need to have the "Docker remote API" enabled with that port. Doing something like this
Thank you so much, because I was very confused. I didn't realize it used a separate method for local versus remote, I was about to try to bind the sock to an IP and use TLS lol. Issue solved.