Dockerfile是一种用于构建Docker镜像的文件,它包含了构建镜像所需的所有指令。它是一个文本文件,其中包含一系列指令,用于告诉Docker如何构建镜像。
Dockerfile体系结构由三个部分组成:FROM、RUN和CMD。FROM指令用于设置要使用的基础映像;RUN指令用于在映像中运行命令;CMD指令用于设置容器启动时要运行的命令。
FROM ubuntu:18.04 # 设置要使用的基础映像 RUN apt-get update # 在映像中运行命令 CMD ["/bin/bash"] # 设置容器启动时要运行的命令
此外,Dockerfile还可以使用其它几个常见的指令来帮助我们创建镜像。ENV指令可用于设置环境变量;ADD或COPY可用于将文件添加到映像中;EXPOSE可用于将端口公开;VOLUME可用于将目录或文件添加到容器中。
ENV MYSQL_ROOT_PASSWORD=123456 # 设置环境变量 ADD ./app /app # 将文件添加到映像中 EXPOSE 8080 # 将端口公开 VOLUME ["/data"] # 将目录或文件添加到容器中
Dockerfile 由一行行命令语句组成,并且支持以 #
开头的注释行。
一般的,Dockerfile 分为四部分:基础镜像信息、维护者信息、镜像操作指令和容器启动时执行指令。
例如
# This dockerfile uses the ubuntu image
# VERSION 2 - EDITION 1
# Author: docker_user
# Command format: Instruction [arguments / command] ..
# Base image to use, this must be set as the first line
FROM ubuntu
# Maintainer: docker_user <docker_user at email.com> (@docker_user)
MAINTAINER docker_user docker_user@email.com
# Commands to update the image
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
# Commands when creating a new container
CMD /usr/sbin/nginx
其中,一开始必须指明所基于的镜像名称,接下来推荐说明维护者信息。
后面则是镜像操作指令,例如 RUN
指令,RUN
指令将对镜像执行跟随的命令。每运行一条 RUN
指令,镜像添加新的一层,并提交。
最后是 CMD
指令,来指定运行容器时的操作命令。
下面是一个更复杂的例子
# Nginx
#
# VERSION 0.0.1
FROM ubuntu
MAINTAINER Victor Vieux <victor@docker.com>
RUN apt-get update && apt-get install -y inotify-tools nginx apache2 openssh-server
# Firefox over VNC
#
# VERSION 0.3
FROM ubuntu
# Install vnc, xvfb in order to create a "fake" display and firefox
RUN apt-get update && apt-get install -y x11vnc xvfb firefox
RUN mkdir /.vnc
# Setup a password
RUN x11vnc -storepasswd 1234 ~/.vnc/passwd
# Autostart firefox (might not be the best way, but it does the trick)
RUN bash -c "echo "firefox" >> /.bashrc"
EXPOSE 5900
CMD ["x11vnc", "-forever", "-usepw", "-create"]
# Multiple images example
#
# VERSION 0.1
FROM ubuntu
RUN echo foo > bar
# Will output something like ===> 907ad6c2736f
FROM ubuntu
RUN echo moo > oink
# Will output something like ===> 695d7793cbe4
# You᾿ll now have two images, 907ad6c2736f with /bar, and 695d7793cbe4 with
# /oink.
MongoDB基本信息MongoDB 是开源的 NoSQL 数据库实现。 该仓库提供了 MongoDB 2.2 ~ 2.7 各个版本的镜像。使用方法默认会在 27017...
运行ZooKeeper,一个分布式协调系统本教程展示了在Kubernetes上使用StatefulSet,PodDisruptionBudget和PodAntiAffini...