Install Docker for Windows on Windows 10 Home Edition

Install Docker for Windows on Windows 10 Home Edition

0. Background

Hardware: Xiaomi Notebook Air 13/Inter Core i7-7500U
Operating system: Windows 10 Home Chinese version Patch: Latest stable patch as of 2019/1/25
Docker: Docker Windows 18.06.1-ce-win73

1. Enable Hyper-V

Create a new hyperv.cmd file with the following content:

pushd "%~dp0"

dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt

for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"

del hyper-v.txt

Dism /online /enable-feature /featurename:Microsoft-Hyper-V-All /LimitAccess /ALL

Execute the hyperv.cmd file as an administrator.

If the system asks you to reboot, do so.

Go to控制面板->程序和功能->啟用或關閉Windows功能and turn on Hyper-V.

2. Disguised as Windows 10 Professional

Open cmd as administrator.
Execute the following command:

REG ADD "HKEY_LOCAL_MACHINE\software\Microsoft\Windows NT\CurrentVersion" /v EditionId /T REG_EXPAND_SZ /d Professional /F

3. Download Docker for Windows

Official website download link (need to bypass the firewall): https://store.docker.com/editions/community/docker-ce-desktop-windows

Domestic mirror:
https://oomake.com/download/docker-windows (Baidu Netdisk)
https://mirrors.ustc.edu.cn/docker-ce/ (version update is not timely)

Install directly after downloading. When installing, be sure to uncheck the window container (it is not checked by default).

After Docker is installed successfully, execute the cmd command docker version .

Docker for Windows could not read CA certificate issue

Cause of the problem:

Docker toolbox has been installed before.

Solution steps:

  1. Delete four docker environment variables
  2. Execute cmd command docker-machine rm default
  3. Execute cmd command as administrator @FOR /f "tokens=*" %i IN ('docker-machine env -u') DO @%i

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持123WORDPRESS.COM。

You may also be interested in:
  • How to install WSL2 Ubuntu20.04 on Windows 10 and set up the docker environment
  • How to install Docker on Windows 10
  • Teach you how to install docker on windows 10 home edition

<<:  Detailed explanation of the usage of setUp and reactive functions in vue3

>>:  GDB debugging MySQL actual combat source code compilation and installation

Recommend

React Fragment Introduction and Detailed Usage

Table of contents Preface Motivation for Fragment...

Implementation code of jquery step progress axis plug-in

A jQuery plugin every day - step progress axis st...

Complete steps to quickly build a vue3.0 project

Table of contents 1. We must ensure that the vue/...

Use thead, tfoot, and tbody to create a table

Some people use these three tags in a perverted wa...

Several ways to set the expiration time of localStorage

Table of contents Problem Description 1. Basic so...

How to install mysql via yum on centos7

1. Check whether MySQL is installed yum list inst...

Detailed tutorial on using Docker to build Gitlab based on CentOS8 system

Table of contents 1. Install Docker 2. Install Gi...

Implementation of Docker to build private warehouse (registry and Harbor)

As more and more Docker images are used, there ne...

MySQL 8.x msi version installation tutorial with pictures and text

1. Download MySQL Official website download addre...

Implementing image fragmentation loading function based on HTML code

Today we will implement a fragmented image loadin...