Home>Article>Operation and Maintenance> Does win10 professional version come with docker?
win10 Professional Edition does not come with docker; the win10 Professional Edition system first needs to enable hardware virtualization and the "Hyper-V" function before installing the "Docker for Windows" software, so the win10 Professional Edition does not Comes with docker.
The operating environment of this tutorial: linux7.3 system, docker version 19.03, Dell G3 computer.
The win10 Professional Edition system first needs to enable hardware virtualization and Hyper-V functions before installing the Docker for Windows software.
How to enable hardware virtualization, Baidu. You can check whether virtualization is turned on in the taskbar.
In win10 system, open the Control Panel - "Applications" - "Programs and Features", turn on Hyper-V, and follow the prompts to restart the system, as shown below:
Docker download and installation
Docker is installed in the C drive by default , this will gradually cause the C drive space to become smaller and smaller. It is recommended to install Docker to the D drive.
How to change the default installation path of Docker in Windows:
1. First create the D:\Program Files\Docker directory.
2. Start - "Windows System" - "Command Prompt", be sure to run it as an administrator, and then run the following command:
mklink /J "C:\Program Files\Docker" "D:\Program Files\Docker"
Run results:
Connection created for C:\Program Files\Docker > D:\Program Files\Docker
## Recommended learning: "docker video tutorial"
The above is the detailed content of Does win10 professional version come with docker?. For more information, please follow other related articles on the PHP Chinese website!