Change bind ip address for the docker host

You know docker daemon is serving on localhost by default. (I am using Windows 10)
image

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.

I found one solution which is port forwarding:

netsh interface portproxy add v4tov4 listenport=2375 listenaddress=10.10.10.10 connectport=2375 connectaddress=127.0.0.1

But still I prefer to configure docker daemon permanently. So if anyone knows please reply.