Solution to the problem of slow docker pull image speed

Solution to the problem of slow docker pull image speed

Currently, Docker has an official mirror for China. For details, please visit https://www.docker-cn.com/registry-mirror

When in use, Docker China's official image acceleration can be accessed through registry.docker-cn.com. This image library only contains popular public images. Private images still need to be pulled from the US image library.

You can use the following command to pull directly from the image acceleration address:

$ docker pull registry.docker-cn.com/myname/myrepo:mytag

For example:

$ docker pull registry.docker-cn.com/library/ubuntu:16.04

Note: Unless you have modified the `--registry-mirror` parameter to the Docker daemon (see below), you will need to specify the full name of the official image. For example, library/ubuntu, library/redis, library/nginx.

Configure the Docker daemon with --registry-mirror

You can configure the Docker daemon to use the Docker official image acceleration by default. This way you can accelerate image pulling through official images by default without having to specify registry.docker-cn.com every time you pull.

You can pass the --registry-mirror parameter when starting the Docker daemon:

$ docker --registry-mirror=https://registry.docker-cn.com daemon

To make the changes permanent, you can modify the /etc/docker/daemon.json file and add the registry-mirrors key.

{
 "registry-mirrors": ["https://registry.docker-cn.com"]
}

After saving the changes, restart Docker for the configuration to take effect.

service docker restart

Note: You can also set this up using Docker for Mac and Docker for Windows.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of where the image pulled by docker is stored
  • Docker pull image and tag operation pull | tag
  • Docker configuration Alibaba Cloud image acceleration pull implementation
  • Detailed explanation of where the images pulled by docker are stored
  • How to solve the problem of slow docker pull image speed
  • Detailed explanation of where the image files pulled by docker are stored
  • Solve the problem of docker pull image error

<<:  Learn MySQL in a simple way

>>:  In-depth understanding of Vue dynamic components and asynchronous components

Recommend

Linux editing start, stop and restart springboot jar package script example

Preface In the springboot configuration file, the...

Summary of js execution context and scope

Table of contents Preface text 1. Concepts relate...

Using js to achieve waterfall effect

This article example shares the specific code of ...

Quickly solve the problem of slow Tomcat startup, super simple

Today I helped a classmate solve a problem - Tomc...

Vue uniapp realizes the segmenter effect

This article shares the specific code of vue unia...

Why should you be careful with Nginx's add_header directive?

Preface As we all know, the nginx configuration f...

Introduction to Vue life cycle and detailed explanation of hook functions

Table of contents Vue life cycle introduction and...

MySQL performance optimization: how to use indexes efficiently and correctly

Practice is the only way to test the truth. This ...

Should I abandon JQuery?

Table of contents Preface What to use if not jQue...

Use Angular CDK to implement a Service pop-up Toast component function

Table of contents 1. Environmental Installation 2...

Analysis of Nginx Rewrite usage scenarios and configuration methods

Nginx Rewrite usage scenarios 1. URL address jump...

HTML code example: detailed explanation of hyperlinks

Hyperlinks are the most frequently used HTML elem...

Solutions to MySQL batch insert and unique index problems

MySQL batch insert problem When developing a proj...

Example of adding and deleting range partitions in MySQL 5.5

introduce RANGE partitioning is based on a given ...

How to get form data in Vue

Table of contents need Get data and submit Templa...