配置方法:
新版的 Docker 使用/etc/docker/daemon.json
(Linux) 或者%programdata%\docker\config\daemon.json
(Windows) 来配置 Daemon。
请在该配置文件中加入(没有该文件的话,请先建一个):
{
"registry-mirrors": ["https://docker.mirrors.ustc.edu.cn"]
}
亦即:在/etc/docker/daemon.json
中 写入:
{
"registry-mirrors": ["https://docker.mirrors.ustc.edu.cn"]
}
这一行 然后重启docker
服务即可.
“The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time.” – Tom Cargill
标 题:docker 换源