赞
踩
制作一个具有ping ip ifconfig vim 这些命令工具的一个nginx镜像,通过dockerfile完成
STEP1 : 写一个Dockerfile
FROM nginx # 基于一个基础镜像
RUN ls
step2
docker build .
下载方式
apt-get update
# ifconfig
apt-get install -y net-tools
# ping
apt-get install -y iputils-ping
# ip
apt-get install -y iproute2
修改镜像源
echo "deb http://mirrors.aliyun.com/debian/ buster main non-free contrib" > /etc/apt/sources.list
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。