0

I would like to access the Docker API (running on Windows Server). Sadly a TCP connection is not possible in our network (at least for this case).

Here I found a solution to change the port. But I am not sure if changing the protocol is possible?

{
   "hosts": ["tcp://0.0.0.0:4243"]
}
fhabers21
  • 49
  • 7

1 Answers1

1

From the docs:

The Docker daemon can listen for Docker Engine API requests via three different types of Socket: unix, tcp, and fd.

... udp is not an option.

masseyb
  • 3,745
  • 1
  • 17
  • 29