当前位置:   article > 正文

Docker实战教程 第3章 Dockerfile

Docker实战教程 第3章 Dockerfile

4-2 通过dockerfile制作镜像

需求

制作一个具有ping ip ifconfig vim 这些命令工具的一个nginx镜像,通过dockerfile完成
  • 1

STEP1 : 写一个Dockerfile

FROM nginx		# 基于一个基础镜像
RUN ls
  • 1
  • 2

step2

docker build .

  • -f 指定使用的dockerfile来生成镜像
  • -t 指定镜像名和标签

下载方式

apt-get update

# ifconfig
apt-get install -y net-tools

# ping
apt-get install -y iputils-ping

# ip
apt-get install -y iproute2
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

修改镜像源

echo "deb http://mirrors.aliyun.com/debian/ buster main non-free contrib" > /etc/apt/sources.list
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/436549
推荐阅读
相关标签
  

闽ICP备14008679号