I can create a Docker instance with the VirtualBox driver, but I cannot figure out how to specify the URL.
Create Command:
docker-machine create --driver virtualbox myBox
docker-machine ls:
NAME ACTIVE DRIVER STATE URL SWARM
myBox * virtualbox Running tcp://192.168.99.100:2376
I want the URL to be a specific URL. How can I force the Docker instance to use a specific URL (ex: 192.168.99.113)?
Details: Mac 10.10.5 using Docker Toolbox
Update
I tried using the --virtualbox-hostonly-cidr
command to set the IP range for the docker machine; I specified a range of one IP address ("192.168.99.113/32"), but the machine created had an IP of 192.168.99.100, which is outside of the range I provided.
Is it even possible to set a docker machine with specific IP address?