如何更换镜像为国内镜像
时间: 2023-09-22 11:14:04 浏览: 82
如果你在使用 Docker,在启动容器时可以通过添加参数 `-e` 来设置镜像地址,例如:
```
docker run -e "REGISTRY_MIRROR=http://<mirror-url>" <image-name>
```
其中 `<mirror-url>` 是你要使用的国内镜像地址。
如果你使用的是 Ubuntu 系统,可以修改 `/etc/apt/sources.list` 文件,将默认的镜像地址替换为国内镜像地址。例如,如果你要使用阿里云的镜像,可以将 `/etc/apt/sources.list` 文件修改为以下内容:
```
deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
```
最后,别忘了执行 `sudo apt update` 命令更新软件源。
阅读全文