window10 client installation docker

Win10 System

Docker now have a special Win10 Professional System installation package, enable Hyper-V.

Open Hyper-V

Programs and Features

Enable or disable Windows features

Select Hyper-V

1, the installation Toolbox

Download the latest version of the Toolbox:  https://www.docker.com/get-docker

Click  the Download Desktop A and the Take the Tutorial , and download the Windows version if you are not logged in, will be asked to register Login:

2, run the installation file

Double-click the downloaded Docker for Windows Installer installation file, all the way Next, click Finish to complete the installation.

After the installation is complete, Docker will start automatically. Small whale icon appears on the notification bar , which means that Docker is running.

The table will appear three icons shown in the following figure:

We can at the command line execution docker version to view the version number, docker run hello-world test to load the mirror test.

If you do not start, you can start Windows Search Docker:

After starting, you can see a small whale icon on the notification bar:


Mirror accelerate

In view of the domestic network problems, the subsequent pulling Docker image is very slow, we may need to configure the accelerator to solve, I use a mirror image of NetEase address: http: //hub-mirror.c.163.com.

The new version of Docker use /etc/docker/daemon.json(Linux) or% programdata% \ docker \ config \ daemon.json (Windows) to configure the Daemon.

Please join in the configuration file (the file is not the case, please build a):

{
  "registry-mirrors": ["http://hub-mirror.c.163.com"]
}

镜像加速设置:

右键 图标,setting

Guess you like

Origin blog.csdn.net/ziwuzhulin/article/details/94739822