Lines Matching refs:machine
9 [Docker document](https://docs.docker.com/machine/get-started/) to start a
26 On mac, go to terminal and find the virtual machine's IP using:
28 docker-machine ip default
33 On Windows, use powershell to find the virtual machine's IP using:
35 docker-machine ip default
47 is controlled by `docker-machine`). It's quite likely that you'll
50 …ow question](http://stackoverflow.com/questions/32834082/how-to-increase-docker-machine-memory-mac)
56 * **I want to create a new virtual machine instead of the default one.**
58 …machine` is a tool to provision and manage docker hosts, it supports multiple platform (ex. aws, g…
60 docker-machine create -d virtualbox --virtualbox-memory 8196 tensorflow
62 …ocker.com/machine/drivers/). Here we use virtualbox to create a new virtual machine locally. `tens…
64 docker-machine ip tensorflow
66 to get the ip of the new virtual machine. To switch from default virtual machine to a new one (here…
68 eval $(docker-machine env tensorflow)
70 …machine env tensorflow` outputs some environment variables such like `DOCKER_HOST`. Then your dock…
76 docker-machine ip tensorflow