Detailed explanation of the solution to docker-compose being too slow

Detailed explanation of the solution to docker-compose being too slow

There is only one solution, that is to change the source!

The sources from github are basically timed out, so use:

curl -L https://get.daocloud.io/docker/compose/releases/download/1.25.0/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose

Remember to modify the permissions, otherwise an error will be reported:

sudo chmod +x /usr/local/bin/docker-compose

Last checked version:

docker-compose --version

Version Information

Install docker-compose (domestic high-speed mirror)

Downloading docker-compose from gihub is too slow and cannot be downloaded, so I can only switch to the domestic mirror (daocloud.io) to download.

download

curl -L https://get.daocloud.io/docker/compose/releases/download/1.25.4/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose

Modify permissions

chmod +x /usr/local/bin/docker-compose

Check whether the installation is successful

docker-compose -version

This is the end of this article on how to solve the slow speed of docker-compose. For more information about the slow speed of docker-compose, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Implementation of master-slave replication in docker compose deployment
  • Detailed tutorial on deploying Apollo custom environment with docker-compose
  • Tutorial on using Docker Compose to build Confluence
  • Example of using docker compose to build a consul cluster environment
  • Docker Compose one-click ELK deployment method implementation
  • Docker Compose practice and summary

<<:  What does the n after int(n) in MySQL mean?

>>:  5 JavaScript Ways to Flatten Arrays

Recommend

JS uses map to integrate double arrays

Table of contents Preface Simulating data Merged ...

Tutorial diagram of installing TomCat in Windows 10

Install TomCat on Windows This article will intro...

React Diff Principle In-depth Analysis

Table of contents Diffing Algorithm Layer-by-laye...

Detailed explanation of the wonderful CSS attribute MASK

This article will introduce a very interesting at...

Will css loading cause blocking?

Maybe everyone knows that js execution will block...

Implementing a distributed lock using MySQL

introduce In a distributed system, distributed lo...

Solve the problem of inconsistent MySQL storage time

After obtaining the system time using Java and st...

Analysis of two usages of the a tag in HTML post request

Two examples of the use of the a tag in HTML post...

A brief discussion on the font settings in web pages

Setting the font for the entire site has always b...

Make a nice flip login and registration interface based on html+css

Make a nice flip login and registration interface...

Basic usage examples of listeners in Vue

Table of contents Preface 1. Basic usage of liste...

CSS setting div background image implementation code

Adding background image control to a component re...