"This computer doesn't have VT-X/AMD-v enabled. Enabling it in the BIOS is mandatory"
docker-machine create --driver virtualbox v1使用以上命令创建一个名称为v1的machine 时报错:Error with pre-create check: "This computer doesn't have VT-X/AMD-v enabled. Enabling it in the BIOS is mandatory"添加 --...
·
docker-machine create --driver virtualbox v1
使用以上命令创建一个名称为v1的 machine 时报错:
Error with pre-create check: "This computer doesn't have VT-X/AMD-v enabled. Enabling it in the BIOS is mandatory"
添加 --virtualbox-no-vtx-check 参数可以禁止 vtx 检查,--virtualbox-boot2docker-url 可以指定本地镜像,否则会去远程下载最新的镜像,非常慢!
docker-machine create v1 -d virtualbox --virtualbox-no-vtx-check --virtualbox-boot2docker-url=/home/sugarppig/.docker/machine/cache/boot2docker.iso
更多推荐
已为社区贡献1条内容
所有评论(0)