How to modify the docker image download address?
Configuring the image accelerator
For users whose Docker client version is greater than 1.10.0
You can use the accelerator by modifying the daemon configuration file /etc/docker/daemon.json
sudo mkdir -p /etc/docker sudo tee /etc/docker/daemon.json <<-'EOF' { "registry-mirrors": ["https://t5t8q6wn.mirror.aliyuncs.com"] } EOF sudo systemctl daemon-reload sudo systemctl restart docker
Related recommendations:docker tutorial
The above is the detailed content of How to modify the docker image download address. For more information, please follow other related articles on the PHP Chinese website!