How to use “Docker Quickstart Terminal” to start another docker-machine?

走远了吗. 提交于 2019-11-30 20:08:00

You simply can create a new docker machine:

docker-machine create -d virtualbox --virtualbox-memory 2048 --virtualbox-disk-size 204800 my_new_machine

(replace my_new_machine)

Then you can ssh to it:

docker-machine start my_new_container
eval $($DOCKER_MACHINE env my_new_container --shell=bash)
docker-machine ssh my_new_container
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!