背景
docker在win上面安装很不友好,很多报错,总结下所有遇到的问题。在网上找到一篇文章,解决了大部分问题,但是自己还遇到了几个问题。
问题一:微星B550打开vt功能
进入bios搜索svd,点击开启
问题二:Error with pre-create check: "This computer is running Hyper-V. VirtualBox won't boot a 64bits VM when Hyper-V is activated. Either use Hyper-V as a driver, or disable the Hyper-V hypervisor. (To skip this check, use --virtualbox-no-vtx-check)"
这个问题需要修改dockerTool的start.sh文件,找到
“Checking if machine $VM exists” 将倒数第二行修改为:
"${DOCKER_MACHINE}" create -d virtualbox --virtualbox-no-vtx-check $PROXY_ENV "${VM}"
问题三:安装完成后提示Raw-mode is unavailable courtesy of Hyper-V
直接管理员身份进入cmd,输入下面的命令行
bcdedit /set hypervisorlaunchtype off