You know docker daemon is serving on localhost by default. (I am using Windows 10)
How can I change this serving address to a custom local ip address something other than 127.0.0.1?
I mean bind the docker daemon to :
tcp://10.10.10.10:2375
then on a remote computer I am able to connect to it by
docker -H 10.10.10.10:2375 …
which is not working at the moment.