Hi team,
Can Docker listen to Unix Domain & Tcp together? If so, how to configure it?
Share and learn in the Docker community.
Hi team,
Can Docker listen to Unix Domain & Tcp together? If so, how to configure it?
Hi,
Yes Docker can listen to Unix Domain and TCP together. All you need to do is use the below option.
For version 1.8.x
docker daemon -H unix:// -H tcp://0.0.0.0:2375
for older version
docker -d -H unix:// -H tcp://0.0.0.0:2375
Regards
Great, that’s helpful. Thanks very much.