怎么在docker里把环境切换成清华的源
时间: 2024-04-12 15:28:11 浏览: 193
要在Docker容器中将软件源切换为清华大学的镜像源,可以按照以下步骤进行操作:
1. 进入Docker容器:
```
docker exec -it <container_id> bash
```
其中,`<container_id>`是你要进入的容器的ID或名称。
2. 备份原有的软件源配置文件:
```
cp /etc/apt/sources.list /etc/apt/sources.list.bak
```
3. 编辑软件源配置文件并将其替换为清华大学的镜像源:
```
echo "deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ $(lsb_release -cs) main restricted universe multiverse" > /etc/apt/sources.list
echo "deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ $(lsb_release -cs)-updates main restricted universe multiverse" >> /etc/apt/sources.list
echo "deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ $(lsb_release -cs)-backports main restricted universe multiverse" >> /etc/apt/sources.list
echo "deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ $(lsb_release -cs)-security main restricted universe multiverse" >> /etc/apt/sources.list
```
4. 更新软件源:
```
apt-get update
```
现在,你的Docker容器中的软件源已经被切换为清华大学的镜像源。你可以使用apt-get命令安装软件时,将会从清华大学的镜像源进行下载。
阅读全文