docker ubuntu容器更换阿里源(转)

Posted 技术改变生活

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了docker ubuntu容器更换阿里源(转)相关的知识,希望对你有一定的参考价值。

问题:使用docker 利用下载的ubuntu镜像启动容器时,使用的源下载更新软件的速度较慢。

解决这个问题的方法是跟新ubuntu容器的源

示例:以ubuntu为基础镜像

启动一个名称为 test02的容器,并且开启shell交互(/bin/bash )

  docker run -ti --name test02   ubuntu /bin/bash  

用自带vi修改源

[email protected]:/# vi /etc/apt/sources.list

将原有内容删除,并替换为以下的阿里源

deb http://mirrors.aliyun.com/ubuntu/ trusty main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu/ trusty-backports main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu/ trusty-proposed main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu/ trusty-security main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu/ trusty-updates main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ trusty main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-backports main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-proposed main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-security main multiverse restricted universe
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-updates main multiverse restricted universe

更新源

sudo apt-get clean
sudo apt-get update

安装vim

apt-get install vim

以上是关于docker ubuntu容器更换阿里源(转)的主要内容,如果未能解决你的问题,请参考以下文章

Docker 更换国内的Hub源

Docker——镜像源更换国内源

ubuntu20.04 LTS 更换国内163源、阿里源、清华源、中科大源

ubuntu16.04更换镜像源为阿里云镜像源

如何拷贝Docker容器内的文件?

Ubuntu17.04更换阿里源