当前位置:   article > 正文

初识Dockerfile_第一关:初识dockerfile

第一关:初识dockerfile

初识Dockerfile

转载:https://www.bilibili.com/video/BV1og4y1q7M4?p=25

没看懂

Dockerfile就是用来构建docker镜像的构建文件!命令脚本!

通过这个脚本可以生成镜像,镜像是一层一层的,每个命令都是一层!

#创建一个dockerfile文件,名字随机,建议Dockerfile
#文件中的内容指令(大写) 参数
FORM centos

VOLUME ["volume01","volume02"]

CMD echo "---end---"
CMD /bin/bash

#这里的每个命令,就是镜像的一层
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

挂载的第二种办法:

zzw@zzw-virtual-machine:~/test$ sudo docker build -f /home/zzw/test/dockerfile1 -t zzw/centos:1.0 .
Sending build context to Docker daemon  2.048kB
Step 1/4 : FROM centos
 ---> 300e315adb2f
Step 2/4 : VOLUME ["volume01","volume02"]
 ---> Running in 46598825289e
Removing intermediate container 46598825289e
 ---> 491cf89d642b
Step 3/4 : CMD echo "---end---"
 ---> Running in a7b02ade8a97
Removing intermediate container a7b02ade8a97
 ---> 952c5b496e8e
Step 4/4 : CMD /bin/bash
 ---> Running in 88470bee0318
Removing intermediate container 88470bee0318
 ---> c6dd7d3bbbfe
Successfully built c6dd7d3bbbfe
Successfully tagged zzw/centos:1.0
zzw@zzw-virtual-machine:~/test$ sudo docker images
REPOSITORY            TAG       IMAGE ID       CREATED          SIZE
zzw/centos            1.0       c6dd7d3bbbfe   13 seconds ago   209MB
tomcat                latest    c0e850d7b9bb   4 days ago       667MB
mysql                 8.0       0627ec6901db   7 days ago       556MB
nginx                 latest    62d49f9bab67   13 days ago      133MB
portainer/portainer   latest    580c0e4e98b0   5 weeks ago      79.1MB
centos                latest    300e315adb2f   4 months ago     209MB

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27

数据卷容器

	--volumes-form
  • 1

在这里插入图片描述

在这里插入图片描述

结论:

容器之间配置信息的传递,数据卷容器的生命周期一直持续到没有容器使用为止。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/203037
推荐阅读
  

闽ICP备14008679号