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

How to install Linux flash

How to install flash in Linux 1. Visit the flash ...

Get the IP and host name of all hosts on Zabbix

zabbix Zabbix ([`zæbiks]) is an enterprise-level ...

Detailed examples of replace and replace into in MySQL into_Mysql

MySQL replace and replace into are both frequentl...

Share 20 excellent web form design cases

Sophie Hardach Clyde Quay Wharf 37 East Soapbox Rx...

Detailed explanation of how to manually deploy a remote MySQL database in Linux

1. Install mysql Run the following command to upd...

JavaScript Advanced Closures Explained

Table of contents 1. The concept of closure Addit...

CSS3 achieves flippable hover effect

CSS3 implements a flippable hover effect. The spe...

Three implementation methods of Mysql copy table and grant analysis

How to quickly copy a table First, create a table...

CentOS method to modify the default ssh port number example

The default ssh port number of Linux servers is g...

Teach you how to install docker on windows 10 home edition

When I wrote the Redis book and the Spring Cloud ...

Vue implements a simple timer component

When doing a project, it is inevitable to encount...

Detailed explanation of the configuration method of Vue request interceptor

Follow the steps below 1. request.js content: htt...