Dockerfile

Dockerfile

基本结构

Dockerfile 是一个文本格式的配置文件,用户可以使用 Dockerfile 快速创建自定义镜像。

Dockerfile 由一行行命令语句组成,并且支持以 # 开头的注释行。

Docker分为四部分:

  • 基础镜像信息
  • 维护者信息
  • 镜像操作指令
  • 容器启动时默认要执行的指令
# This dockerfile uses the ubuntu image
# VERSION 2 - EDITION 1
# Author: seancheng
# Command format: Instruction [arguments / command] ...

# 第一行必须指定基于的基础镜像
FROM ubuntu

# 维护者信息
LABEL MAINTAINER='seancheng xianshangxian@126.com'

# 镜像操作指令
RUN echo "deb http://archive.ubuntu.com/ubuntu/ raring main universe" >> /etc/apt/sources.list
RUN apt-get update && apt-get install -y nginx
RUN echo "\ndaemon off;" >> /etc/nginx/nginx.conf

# 容器启动时默认要执行的指令
CMD /usr/sbin/nginx

其中,一开始必须指明所基于的镜像名称,接下来一般会说明维护者信息。 后面则是镜像操作指令,例如RUN指令,RUN指令将对镜像执行跟随的命令。每运行一条RUN指令,镜像添加新的一层,并提交。 最后是CMD指令来指定运行容器时的操作指令。

指令

FROM

格式为FROM Dockerfile或FROM Dockerfile:。

第一条指令必须为FROM指令。并且,如果在同一个Dockerfile中创建多个镜像时,可以使用多个FROM指令(每个镜像一次)。

LABEL MAINTAINER

格式为LABEL MAINTAINER ,指定维护者信息

RUN

格式为RUN 或RUN ["executable","param1","param2"]。

前者将在shell终端中运行命令,即/bin/sh -c;后者则使用exec执行。指定使用其他终端可以通过第二种方式实现,例如:

RUN ["/bin/bash","-c","echo hello"]

每条RUN指令将在当前镜像基础上执行指定命令,并提交为新的镜像。当命令较长时可以使用 \ 来换行,例如:

RUN echo "hello world\nhello tom" > /tmp/abc && \
    cat /tmp/abc

CMD

CMD支持三种格式:

  • CMD ["executable","param1","param2"]使用exec执行,推荐方式
  • CMD command param1 param2在/bin/sh中执行,提供给需要交互的应用
  • CMD ["param1","param2"]提供给ENTRYPOINT的默认参数

CMD用于指定启动容器时默认要执行的命令,每个Dockerfile只能有一条CMD命令。如果指定了多条命令,只有最后一条会被执行。

如果用户启动容器时指定了运行的命令,则会覆盖掉CMD指定的命令。

EXPOSE

格式为EXPOSE [...]。 例如:

EXPOSE 22 80 8443

EXPOSE用于告诉Docker服务器容器暴露的端口号,供互联系统使用。

在启动容器时通过-P,Docker主机会自动分配一个端口转发到指定的端口; 使用-p则可以具体指定哪个本地端口映射过来。

ENV

格式为ENV 。指定一个环境变量,会被后续RUN指令使用,并在容器运行时保持。例如:

ENV PG_MAJOR 9.3
ENV PG_VERSION 9.3.4
RUN curl -SL http://example.com/postgres-$PG_VERSION.tar.xz | tar -xJC /usr/src/postgress && ...
ENV PATH /usr/local/postgres-$PG_MAJOR/bin:$PATH

ADD

格式为ADD 。

该命令将复制指定的到容器中的。其中可以是Dockerfile所在目录的一个相对路径(文件或目录);也可以是一个URL;还可以是一个tar文件(会自动解压为目录)。

COPY

格式为COPY 。

复制本地主机的(为Dockerfile所在目录的相对路径,文件或目录)为容器中的。目标路径不存在时会自动创建。 当使用本地目录为源目录时,推荐使用COPY。

创建镜像

编写完成Dockerfile后,可以通过docker build命令来创建镜像。

基本的格式为docker build [选项] 路径,该命令将读取指定路径下(包括子目录)的Dockerfile,并将该路径下所有内容发送给Docker服务端,由服务端来创建镜像。因此一般建议放置Dockerfile的目录为空目录。

另外,可以通过 .dockerignore 文件(每一行添加一条匹配模式)来让Docker忽略路径下的目录和文件。

要指定镜像的标签信息,可以通过-t选项。

例如,指定Dockerfile所在路径为/tmp/docker_builder/,并且希望生成镜像标签为build_repo/first_image,可以使用下面的命令:

docker build -t build_repo/first_image /tmp/docker_builder/

编写

创建文件目录
[root@Aimmi ~]# tree 
.
|-- anaconda-ks.cfg
`-- httpd
    |-- Dockerfile
    `-- files
        |-- apr-1.7.0.tar.gz
        |-- apr-util-1.6.1.tar.gz
        `-- httpd-2.4.48.tar.gz

2 directories, 5 files

[root@Aimmi httpd]# vim Dockerfile
[root@Aimmi httpd]# cd
[root@Aimmi httpd]# cat Dockerfile 
FROM centos  

LABEL MAINTAINER='aimmi 123@qq.com'  

ENV apr_version=1.7.0 apr_util_version=1.6.1 httpd_version=2.4.48

ADD files/apr-${apr_version}.tar.gz /usr/src/
ADD files/apr-util-${apr_util_version}.tar.gz /usr/src/
ADD files/httpd-${httpd_version}.tar.gz /usr/src/

RUN yum -y install openssl-devel pcre-devel pcre  expat-devel libtool gcc gcc-c++ make  && \                        
  useradd -r -M -s /sbin/nologin apache && \    
  cd /usr/src/apr-${apr_version} && sed -i '/$RM "$cfgfile"/d' configure && \ 
  ./configure --prefix=/usr/local/apr && make && make install && \

  cd ../apr-util-${apr_util_version} && \
  ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr && \
  make && make install && \

  cd ../httpd-${httpd_version} && \
   ./configure --prefix=/usr/local/apache \
    --enable-so \
    --enable-ssl \
    --enable-cgi \
    --enable-rewrite \
    --with-zlib \
    --with-pcre \
    --with-apr=/usr/local/apr \
    --with-apr-util=/usr/local/apr-util/ \
    --enable-modules=most \
    --enable-mpms-shared=all \
    --with-mpm=prefork && make && make install && \
    sed -i '/#ServerName/s/#//g' /usr/local/apache/conf/httpd.conf
    
EXPOSE 80  443     

VOLUME ["/usr/local/apache/htdocs/"]    

CMD  ["/usr/local/apache/bin/apachectl","-D","FOREGROUND"] 

制作镜像
[root@Aimmi ~]# docker build -t aimmi/httpd:v0.1  /root/httpd/
Removing intermediate container b6023d2b61a6
 ---> 2d0c4d3d44bb
Step 8/10 : EXPOSE 80  443
 ---> Running in d6568420fefd
Removing intermediate container d6568420fefd
 ---> b7c422d721c6
Step 9/10 : VOLUME ["/usr/local/apache/htdocs/"]
 ---> Running in fdc6db4c8664
Removing intermediate container fdc6db4c8664
 ---> 5722d82b87e9
Step 10/10 : CMD  ["/usr/local/apache/bin/apachectl","-D","FOREGROUND"]
 ---> Running in 620bdb183ea9
Removing intermediate container 620bdb183ea9
 ---> a4ecbd6e9867
Successfully built a4ecbd6e9867
Successfully tagged aimmi/httpd:v0.1

[root@Aimmi ~]# docker images
REPOSITORY    TAG       IMAGE ID       CREATED          SIZE
aimmi/httpd   v0.1      a4ecbd6e9867   29 seconds ago   701MB

[root@Aimmi ~]# docker run  --name httpd01 -dit -p 80:80 aimmi/httpd:v0.1
0a976efc007e38214a191ebdcba98bbe0d2fed3721bc3422b3a82c01e01ecb3d
[root@Ainni ~]# docker ps
CONTAINER ID   IMAGE              COMMAND                  CREATED         STATUS         PORTS                                        NAMES
0a976efc007e   aimmi/httpd:v0.1   "/usr/local/apache/b…"   5 seconds ago   Up 5 seconds   0.0.0.0:80->80/tcp, :::80->80/tcp, 443/tcp   httpd01

[root@Aimmi ~]# docker exec -it httpd01 /bin/bash
[root@0a976efc007e /]# ss -antl
State           Recv-Q          Send-Q                    Local Address:Port                     Peer Address:Port          Process          
LISTEN          0               128                             0.0.0.0:80                            0.0.0.0:*      



Dockerfile

 

上传镜像仓库

[root@Aimmi ~]# docker login
Login with your Docker ID to push and pull images from Docker Hub. If you don't have a Docker ID, head over to https://hub.docker.com to create one.
Username: aimmi      
Password: 
WARNING! Your password will be stored unencrypted in /root/.docker/config.json.
Configure a credential helper to remove this warning. See
https://docs.docker.com/engine/reference/commandline/login/#credentials-store

Login Succeeded
[root@Aimmi ~]# docker images
REPOSITORY    TAG       IMAGE ID       CREATED         SIZE
aimmi/httpd   v0.1      950c2a34c923   5 minutes ago   701MB
centos        latest    5d0da3dc9764   2 months ago    231MB
[root@Aimmi ~]# docker push aimmi/httpd:v0.1
The push refers to repository [docker.io/aimmi/httpd]
921384aaf9cd: Pushed 
8183b67224b3: Pushed 
742e10ad7ca9: Pushed 
a81982853d54: Pushed 
74ddd0ec08fa: Mounted from library/centos 
v0.1: digest: sha256:088f5700bfdc52f6519c19662e7c032110110f149771db43b47e212ebcb1f788 size: 1374
上一篇:存储卷部署Apache网站


下一篇:docker部署apache服务(使用存储卷)