I am having trouble connecting to my server, which listens on a Unix Domain Socket.
Go's net/http package doesn't seem to be able to use socket paths to connect to a target.
Is there a good alternative without having to create my own HTTP Protocol implementation using net?
I found lots of solutions like these, but they are unsuitable
I have tried:
_, err := http.Get("unix:///var/run/docker.sock") (changing unix to path/socket. It always complains about an unsupported protocol
/var/run/socket.sock.