Summary of problems encountered when installing docker on win10 home version

Summary of problems encountered when installing docker on win10 home version

Docker download address: http://get.daocloud.io/#install-docker-for-mac-windows

1. First, I downloaded Docker for Windows directly. When I installed it, I found that the Win10 Home Edition does not support the Hyper-V function. Only the Professional Edition has it. I cannot install Docker directly. I need to install it through the Docker Toolbox. So I downloaded the Docker Toolbox and installed it.

2. There is a list of optional installations during installation. Because I have already installed git, I did not check git for windows. After the installation is complete, I start docker quickstart and it reports an error that bash.exe cannot be found. It turns out that docker needs to be started through git bash. In the docker startup target properties, the default git bash path needs to be changed to the path in the git installed by myself. Right-click the docker quickstart terminal on the desktop to open the properties and modify it

3. After the modification is completed, open quickstart again, the terminal can be opened, but the error This computer doesn't have VT-X/AMD-v enabled. Enabling it in the BIOS is mandatory is reported. I checked on Google and found that it was because the computer did not have the virtualization function turned on. Restart the computer and press F2 to enter the BIOS settings. Set the Virtualization Thchnology property to enable. Then turn on the computer and check the taskbar -> performance to see that the virtualization function is turned on.

4. Open the terminal again and find that the same error message is still reported: This computer doesn't have VT-X/AMD-v enabled. Enabling it in the BIOS is mandatory. I searched for solutions online, entered bcdedit /set hypervisorlaunchtype Auto in the command prompt in administrator mode, and then restarted the computer, but it didn't work. So I tried uninstalling and reinstalling, to no avail

5. Find another solution, open the docker toolbox installation directory, edit the start.sh file with the editor, and find the following code snippet

STEP="Checking if machine $VM exists"
if [ $VM_EXISTS_CODE -eq 1 ]; then
 "${DOCKER_MACHINE}" rm -f "${VM}" &> /dev/null || :
 rm -rf ~/.docker/machine/machines/"${VM}"
 #set proxy variables if they exists
 if [ "${HTTP_PROXY}" ]; then
  PROXY_ENV="$PROXY_ENV --engine-env HTTP_PROXY=$HTTP_PROXY"
 fi
 if [ "${HTTPS_PROXY}" ]; then
  PROXY_ENV="$PROXY_ENV --engine-env HTTPS_PROXY=$HTTPS_PROXY"
 fi
 if [ "${NO_PROXY}" ]; then
  PROXY_ENV="$PROXY_ENV --engine-env NO_PROXY=$NO_PROXY"
 fi
 "${DOCKER_MACHINE}" create -d virtualbox $PROXY_ENV "${VM}"
fi

The second to last line is where the virtual machine is created:

"${DOCKER_MACHINE}" create -d virtualbox $PROXY_ENV "${VM}"

Modify the line and add --virtualbox-no-vtx-check . The end result is:

"${DOCKER_MACHINE}" create -d virtualbox --virtualbox-no-vtx-check $PROXY_ENV "${VM}"

Start the terminal again, the above error is no longer reported, but the following is reported instead: boot2docker is not found, and automatic download fails

Go directly to github to download, https://github.com/boot2docker/boot2docker/releases/download/v19.03.3/boot2docker.iso

6. After the download is complete, go to C:\Users\syc\.docker\machine\cache (your own directory) above to replace the temporary file that just failed to download, and then restart the docker terminal. The following error is reported: Error in driver during machine creation: Unable to start the VM

7. I don’t know what happened. I guess it might be because I didn’t follow the default path when installing, so I uninstalled and reinstalled it, followed the default installation all the way, restarted several times, and finally it succeeded inexplicably. Oh, it’s really a headache. I don’t understand what these configurations are about. I just try to figure out the solutions on the Internet, but I still don’t know how they work after I’ve tried them. If you want to use Windows, you still need the professional version. The home version is sometimes really inconvenient. Otherwise, you can use Linux.

Summarize

The above is a summary of the problems encountered when installing docker on win10 home version. I hope it will be helpful to everyone. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Install Docker for Windows on Windows 10 Home Edition
  • How to install Docker on Windows 10 Home Edition

<<:  How to encapsulate axios request with vue

>>:  Correct use of MySQL partition tables

Recommend

Briefly understand the two common methods of creating files in Linux terminal

We all know that we can use the mkdir command to ...

How to obtain root permissions in a docker container

First, your container must be running You can vie...

Introduction to Nginx log management

Nginx log description Through access logs, you ca...

Use SQL statement to determine whether the record already exists before insert

Table of contents Determine whether a record alre...

iframe parameters with instructions and examples

<iframe src=”test.jsp” width=”100″ height=”50″...

5 Simple XHTML Web Forms for Web Design

Simple XHTML web form in web design 5. Technique ...

Summary of some common configurations and techniques of Nginx

Preface This article lists several common, practi...

Detailed explanation of MySQL data rows and row overflow mechanism

1. What are the formats of lines? You can see you...

HTML is the central foundation for the development of WEB standards

HTML-centric front-end development is almost what ...

Detailed explanation of how to use awk in Linux

Before learning awk, we should have learned sed, ...

Detailed explanation of special phenomena examples of sleep function in MySQL

Preface The sleep system function in MySQL has fe...

Implementation of CSS linear gradient concave rectangle transition effect

This article discusses the difficulties and ideas...

Detailed steps to install VMware Tools from scratch (graphic tutorial)

VMware Tools is a tool that comes with VMware vir...

Introduction to container data volumes in Docker

Table of contents Docker container data volume Us...