How to install Docker on Windows 10 Home Edition

How to install Docker on Windows 10 Home Edition

I recently used Docker to upgrade a project. I had never used it before, so I looked up some information and after some personal practice, I finally installed Docker successfully in the Win10 Home version.

1. Download Docker

Docker can be installed on Mac, Windows, and Linux. However, in Windows systems, Docker currently only has installation packages for Win10 Professional and Enterprise Editions, and Win7/Win8/Win10 Home Editions need to be installed through Docker Toolbox.

Download address: http://mirrors.aliyun.com/docker-toolbox/windows/docker-toolbox/


Docker has CE and EE versions. CE is the free version, and EE is the paid version supported by the company. Choose the CE version here.

2. Install Docker

Docker installation is relatively simple. Just double-click the downloaded DockerToolbox exe file and install it according to the default options. During the installation process, you will be prompted to install the plug-in. Just click Agree. After the installation is complete, three icons will be generated on the desktop, as shown below:


3. Run Docker

Double-click the Docker Quickstart Terminal icon on the desktop to enter the Docker client.

I want to explain here that when I opened the Docker client, the little whale was not prompted.


Instead, it said that a problem had occurred. Please press any key to exit. After investigation, it was found that the virtualization function of my computer CPU was turned off (the picture below shows it turned on)


The CPU virtualization function is enabled in the BIOS when the computer is turned on. After enabling it, uninstall Docker and Oracle VM VirtualBox first, and then reinstall Docker Toolbox. After the installation is complete, open the Docker client again and the little whale will appear normally.

4. Execute Docker commands

Execute docker version in the Docker client to check the Docker version. My computer has a problem when executing this command, as follows:


After troubleshooting, it was found that this error was caused by inconsistent API versions between the Docker client and server. The problem can be solved by upgrading the Docker API version on the server.

The specific method is to execute the docker-machine upgrade command on the Docker client. The execution result is shown in the figure below.


After the execution is complete, execute docker version again and the result is as follows:


So far, the installation of Docker in the win10 home edition environment has been completed.

This is the end of this article about the steps to install Docker on Windows 10 Home Edition. For more information about installing Docker on Windows 10 Home Edition, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Install Docker for Windows on Windows 10 Home Edition
  • Summary of problems encountered when installing docker on win10 home version

<<:  MySQL backup and recovery design ideas

>>:  Details of 7 kinds of component communication in Vue3

Recommend

Implementation of crawler Scrapy image created by dockerfile based on alpine

1. Download the alpine image [root@DockerBrian ~]...

Specific use of MySQL internal temporary tables

Table of contents UNION Table initialization Exec...

Detailed troubleshooting of docker.service startup errors

Execute the following command to report an error ...

Summary of MySQL stored procedure permission issues

MySQL stored procedures, yes, look like very rare...

Detailed process of configuring Https certificate under Nginx

1. The difference between Http and Https HTTP: It...

Vue implements a complete process record of a single file component

Table of contents Preface Single file components ...

How to create, save, and load Docker images

There are three ways to create an image: creating...

Detailed explanation of the use of React list bar and shopping cart components

This article example shares the specific code of ...

Steps to deploy multiple tomcat services using DockerFile on Docker container

1. [admin@JD ~]$ cd opt #Enter opt in the root di...

Steps to install MySQL using Docker under Linux

As a tester, you may often need to install some s...

Implementing WeChat tap animation effect based on CSS3 animation attribute

Seeing the recent popular WeChat tap function, I ...

Angular framework detailed explanation of view abstract definition

Preface As a front-end framework designed "f...

Docker's flexible implementation of building a PHP environment

Use Docker to build a flexible online PHP environ...