describe:Install VM under Windows 10, run Docker in VM, and get an error when using Docker pull to pull the image one,
reason:When using the docker pull command to pull an image, if no additional information is added, such as docker pull nginx, the default image pull address will be a foreign warehouse, causing DNS resolution timeout. Solution:1.) Change the default DNS of VM to 8.8.8.8 2.) Use the domestic image warehouse to pull the image two,
reason:The http handshake failed because of the use of a foreign address. Solution:1.) Manually specify the domestic warehouse address every time you pull the image docker pull registry.docker-cn.com/library/nginx 2.) Modify the /etc/docker/daemon.json file (change the default warehouse address to the domestic address to save manual entry every time) vim /etc/docker/daemon.json -> write { "registry-mirrors": ["https://registry.docker-cn.com"] } Finally, restart docker systemctl daemon-reload + systemctl restart docker 3. I want to complain that CSDN's markdown is really difficult to use and does not support many grammars. Supplement: Solution to docker pull image error or timeout, change the pull address to domestic image warehouse The default image pull address of Docker is a foreign warehouse, which has a slow download speed and may even report the following error
Solution modification/etc/docker/daemon.json file and add the registry-mirrors key value. Then restart Docker. "registry-mirrors": ["https://registry.docker-cn.com"] } Supplement: Solve the problem of docker failing to download images in CentOS7 questionYesterday I bought a student machine of Alibaba Cloud Server for six months to deploy the graduation project environment. When I was tinkering with Docker, a problem occurred. Docker was successfully installed and started successfully, as shown in the figure But when I pulled the image, I encountered a timeout and could not download the image. I guess the domestic docker official image was blocked. I searched online for a long time and found that I needed to use domestic image acceleration. Daocloud and Alibaba Cloud are recommended. I used Daocloud image acceleration. After registering an account, there will be a hyperlink to image acceleration above. After clicking in, there are various system scripts for adding domestic mirror acceleration After running the script, execute the pull operation again, and the image is successfully downloaded At this time, execute docker images to see the downloaded image Make a record so you don't forget it after a long time. The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. If there are any mistakes or incomplete considerations, please feel free to correct me. You may also be interested in:
|
<<: Basic tutorial on using explain statement in MySQL
>>: How to use default values for variables in SASS
The image tag is used to display an image in a we...
Underlining in HTML used to be a matter of enclos...
This article shares the specific code for impleme...
The syntax for an outer join is as follows: SELEC...
1. Download https://dev.mysql.com/downloads/mysql...
echarts component official website address: https...
Preface Before talking about covering index, we m...
This article example shares the specific code for...
Arrange by functionNN : Indicates which earlier ve...
Table of contents 1. beforeCreate and created fun...
Although Mac systems come with PHP and Apache, so...
Table of contents Project Background start Create...
The component lifecycle is usually where our busi...
In the MySQL database, after tables are associate...
1. Modify the Linux server docker configuration f...