Linked Questions

Popular Questions

Docker API access from the network

Asked by At

I use Docker (Toolbox) on Windows 7. I would like to access the docker daemon by the remote api from other computers.

My computer ip is: 192.168.140.150

By default the docker daemon accessible the following mode:
Ex: curl ... https://192.168.99.150:2376/images/json
but the 192.168.99.... is not a public network (it is created by docker). I can access it only from my computer.

I would like to access docker api the following mode:
Ex: curl ... https://192.168.140.150:2376/images/json
or
curl http://192.168.140.150:2375/images/json
and not only from my computer (so I want to skip certificate parameters from the curl command too)

Important! Windows 7 and Docker Toolbox with Virtual Box

Related Questions