How can I run the command to force docker-machine to create a vm with specific address in Windows 10 Home?

南笙酒味 提交于 2019-12-05 20:47:49

The error you are facing seems self-explanatory: the machine "default" does not seem to exist or is not running.

First of all, make sure the machine exists by typing the following in an elevated powershell:

 docker-machine ls

If you see the machine, make sure it is running by typing the following:

docker-machine start MyMachineName

Otherwise, create a new one:

docker-machine create MyMachineName

Another reason why it could fail is not having set the right virtual switch when creating your docker-machine.

Hope this helps

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!