I am working through the Docker Machine User Guide over at https://docs.docker.com/v1.5/machine/.
It says:
You can see the machine you have created by running the docker-machine ls command again:
$ docker-machine ls
NAME ACTIVE DRIVER STATE URL
dev * virtualbox Running tcp://192.168.99.100:2376
The * next to dev indicates that it is the active host.
When I run this I don't see the * next to any machines. What do I need to do to make the machine be marked as active? Are there any benefits to this?
For example, I am running the Docker Machine on Windows 10, by making it active does it mean I don't have to keep specifying the machine name in my commands such as docker-machine env dev
Its' pretty simple and the answer lies in the statement "a machine is considered active if the DOCKER_HOST environment variable points to it" from docker website: https://docs.docker.com/machine/reference/active/
So, let's say initially:
If you check:
All you have to do now is (tried on Docker terminal):
And now if you check:
The active container has moved to 'dev'!! From now on all your commands like 'docker container ls' etc. should reflect your newly active container.
But please note this arrangement will work only for the Docker terminal where you changed the default container i.e. if you close and re-open a new terminal or open another Docker terminal the original default container (staging in this example) will be active.
Use below command for Docker for Windows Container with Powershell to make machine active:
Dock
I think just running the following command should work:
(Where
default
is the name of the machine).The reason for the * is to tell you which machine you're currently connected to e.g. if you run
docker ps
which Docker engine will it talk to?In the current version of Docker machine, I believe you have to always specify the name.