1. 程式人生 > >windows 安裝DockerToolbox出現問題,無法使用

windows 安裝DockerToolbox出現問題,無法使用

一、問題描述:安裝過Docker Toolbox,解除安裝後,重新安裝,無法正常使用,提示 Running pre-create checks... Error with pre-create check: "Hyper-V is installed. VirtualBox won't boot a 64bits VM when Hyper-V is activated. If it's installed but deactivated, you can use --virtualbox-no-vtx-check to try anyways" Looks like something went wrong in step ´Checking if machine default exists´

二、解決方法(參考:謝謝參考文獻,試過有用。)

1.以管理員方式開啟cmd,輸入以下命令。(第二行命令參考第一行命令返回的結果) C:\>bcdedit /copy {current} /d "No Hyper-V" The entry was successfully copied to {ff-23-113-824e-5c5144ea}. C:\>bcdedit /set {ff-23-113-824e-5c5144ea} hypervisorlaunchtype off The operation completed successfully.

2.重啟電腦,選擇No Hyper-V 系統,進入電腦。

3.下載安裝Docker Toolbox。

4.開啟安裝目錄,找到start.sh。 編輯start.sh,

找到下面的程式碼片段: STEP="Checking if machine $VM exists" if [ $VMEXISTSCODE -eq 1 ]; then "${DOCKERMACHINE}" rm -f "${VM}" &> /dev/null || : rm -rf ~/.docker/machine/machines/"${VM}" #set proxy variables if they exists if [ -n ${HTTPPROXY+x} ]; then PROXYENV="$PROXYENV --engine-env HTTPPROXY=$HTTPPROXY" fi if [ -n ${HTTPSPROXY+x} ]; then PROXYENV="$PROXYENV --engine-env HTTPSPROXY=$HTTPSPROXY" fi if [ -n ${NOPROXY+x} ]; then PROXYENV="$PROXYENV --engine-env NOPROXY=$NOPROXY" fi "${DOCKERMACHINE}" create -d virtualbox $PROXYENV "${VM}" fi

將最後第二行改為: "${DOCKERMACHINE}" create -d virtualbox --virtualbox-no-vtx-check $PROXYENV "${VM}"

5.可以正常使用Docker Quickstart Termial了。

6.以後要用Docker,都要進入N0 Hyper-V 。 --------------------- 本文來自 future_fan 的CSDN 部落格 ,全文地址請點選:https://blog.csdn.net/u010389429/article/details/51917883?utm_source=copy