deb http://mirror.lzu.edu.cn/debian/ buster-backports main contrib non-free deb http://mirror.lzu.edu.cn/debian-security/ buster/updates main contrib non-free deb-src http://mirror.lzu.edu.cn/debian stable main contrib non-free deb-src http://mirror.lzu.edu.cn/debian stable-updates ma...
更新apt软件包索引。 安装需要的软件包。 下面我们将通过一个简单的Dockerfile示例来演示如何更换Debian的apt安装源。 #使用Debian作为基础镜像FROM debian#安装wget工具RUN apt-get update && apt-get install -y wget#下载国内镜像源的配置文件RUN wget -O /etc/apt/sources.list#更新apt软件包索引RUN apt-get ...
步骤1、添加源 root@debian~# vim /etc/apt/sources.list.d/docker.list deb https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/debian bookworm stable :wq root@debian~# 注:不需要[signed-by=]来指定位置,默认为[signed-by=/etc/apt/keyrings/docker.gpg]。 步骤2、下载gpg文件 root@debian~# c...
在上述Dockerfile中,我们使用sed命令替换了默认的APT源为一个更快的镜像。之后,使用apt-get update命令更新软件包缓存。 使用Debian镜像的示例 如果你选择使用Debian镜像,Dockerfile的设置将类似: # DockerfileFROMdebian:bullseye# 修改APT源RUNsed -i 's| /etc/apt/sources.list# 更新APT缓存RUNapt-get update 1...
加个RUN, 修改 /etc/apt/sources.list 就阔以了呀。 sed, echo什么的
debian10部署docker(傻瓜式) 提示:以下是本篇文章正文内容,下面案例可供参考 一、准备工作 系统要求 Docker 支持以下版本的 Debian (opens new window)操作系统,我这里是debian10x版本的: Debian Bullseye 11Debian Buster 10 我的debian 二、使用 APT 安装,注意要先配置apt网络源 ...
root@dc3d333fc181:~# sed -i s@/deb.debian.org/@/mirrors.aliyun.com/@g /etc/apt/sources.list apt-get clean & apt-get update & apt-get install v
debian 9 docker 官方源和阿里源,您喜欢那个就要那个。 在/etc/apt/sources.list.d目录下新建一个文件,名为 docker.list 的文件,在把下面您喜欢的docker源写进docker.list文件里。 # 进入源文件夹 sudo cd /etc/apt/sources.list.d # 新建文件
apt系(Debian 11)安装Docker 参考: docker debian安装教程:https://docs.docker.com/engine/install/debian/ 使用非roor用户组运行docker: https://docs.docker.com/compose/completion/ docker compose安装教程:https://docs.docker.com/compose/completion/ 1. 卸载旧版本docker(如果安装过的话) sudo apt remove ...