Reputation: 39
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
Reputation: 4132
From the docs:
The Docker daemon can listen for Docker Engine API requests via three different types of Socket:
unix
,tcp
, andfd
.
... udp
is not an option.
Upvotes: 1