fhabers21
fhabers21

Reputation: 39

How to change Docker API Port from TCP to UDP

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"]
}

Upvotes: 0

Views: 554

Answers (1)

masseyb
masseyb

Reputation: 4132

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.

Upvotes: 1

Related Questions