1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/docs/sources/builder/basics.rst

168 lines
4.8 KiB
ReStructuredText
Raw Normal View History

2013-05-01 16:37:32 -04:00
==============
Docker Builder
==============
.. contents:: Table of Contents
Docker Builder specifes a simple DSL which allows you to automate the steps you
would normally manually take to create an image. Docker Build will run your
steps and commit them along the way, giving you a final image.
1. Usage
========
To use Docker Builder, assemble the steps into a text file (commonly referred to
as a Dockerfile) and supply this to `docker build` on STDIN, like so:
``docker build < Dockerfile``
Docker will run your steps one-by-one, committing the result if necessary,
before finally outputting the ID of your new image.
2. Format
2013-05-01 16:37:32 -04:00
=========
The Dockerfile format is quite simple:
2013-05-01 16:37:32 -04:00
``instruction arguments``
The Instruction is not case-sensitive, however convention is for them to be
UPPERCASE in order to distinguish them from arguments more easily.
2013-05-01 16:37:32 -04:00
Dockerfiles are evaluated in order, therefore the first instruction must be
`FROM` in order to specify the base image from which you are building.
2013-05-01 16:37:32 -04:00
Docker will ignore lines in Dockerfiles prefixed with "`#`", so you may add
comment lines. A comment marker in the rest of the line will be treated as an
argument.
2013-05-01 16:37:32 -04:00
2. Instructions
===============
Docker builder comes with a set of instructions, described below.
2013-05-01 16:37:32 -04:00
2.1 FROM
--------
2013-05-01 16:37:32 -04:00
``FROM <image>``
The `FROM` instruction sets the base image for subsequent instructions. As such,
a valid Dockerfile must have it as its first instruction.
2013-05-01 16:37:32 -04:00
`FROM` can be included multiple times within a single Dockerfile in order to
create multiple images. Simply make a note of the last image id output by the
commit before each new `FROM` command.
2013-05-01 16:37:32 -04:00
2013-05-02 07:12:42 -04:00
2.2 MAINTAINER
--------------
2013-05-02 07:12:42 -04:00
``MAINTAINER <name>``
The `MAINTAINER` instruction allows you to set the Author field of the generated
images.
2013-05-02 07:12:42 -04:00
2.3 RUN
2013-05-01 16:37:32 -04:00
-------
2013-05-01 16:37:32 -04:00
``RUN <command>``
The `RUN` instruction will execute any commands on the current image and commit
the results. The resulting committed image will be used for the next step in the
Dockerfile.
2013-05-01 16:37:32 -04:00
Layering `RUN` instructions and generating commits conforms to the
core concepts of Docker where commits are cheap and containers can be created
from any point in an image's history, much like source control.
2013-05-02 07:12:42 -04:00
2.4 CMD
-------
2013-05-02 07:12:42 -04:00
``CMD <command>``
The `CMD` instruction sets the command to be executed when running the image.
This is functionally equivalent to running
`docker commit -run '{"Cmd": <command>}'` outside the builder.
2013-05-02 07:12:42 -04:00
.. note::
Don't confuse `RUN` with `CMD`. `RUN` actually runs a command and commits
the result; `CMD` does not execute anything at build time, but specifies the
intended command for the image.
2013-05-02 07:12:42 -04:00
2.5 EXPOSE
----------
2013-05-02 07:12:42 -04:00
``EXPOSE <port> [<port>...]``
The `EXPOSE` instruction sets ports to be publicly exposed when running the
image. This is functionally equivalent to running
`docker commit -run '{"PortSpecs": ["<port>", "<port2>"]}'` outside the builder.
2013-05-02 07:12:42 -04:00
2.6 ENV
-------
``ENV <key> <value>``
The `ENV` instruction sets the environment variable `<key>` to the value
`<value>`. This value will be passed to all future ``RUN`` instructions. This is
functionally equivalent to prefixing the command with `<key>=<value>`
.. note::
The environment variables are local to the Dockerfile, they will not persist
when a container is run from the resulting image.
2.7 INSERT
2013-05-01 16:37:32 -04:00
----------
``INSERT <file url> <path>``
The `INSERT` instruction will download the file from the given url to the given
path within the image. It is similar to `RUN curl -o <path> <url>`, assuming
curl was installed within the image.
2013-05-01 16:37:32 -04:00
.. note::
The path must include the file name.
2013-05-02 07:12:42 -04:00
2013-05-01 16:37:32 -04:00
3. Dockerfile Examples
======================
::
# Nginx
#
# VERSION 0.0.1
# DOCKER-VERSION 0.2
FROM ubuntu
MAINTAINER Guillaume J. Charmes "guillaume@dotcloud.com"
2013-05-02 07:12:42 -04:00
2013-05-01 16:37:32 -04:00
# make sure the package repository is up to date
RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list
RUN apt-get update
2013-05-01 16:37:32 -04:00
RUN apt-get install -y inotify-tools nginx apache2 openssh-server
INSERT https://raw.github.com/creack/docker-vps/master/nginx-wrapper.sh /usr/sbin/nginx-wrapper
2013-05-01 16:37:32 -04:00
::
# Firefox over VNC
#
# VERSION 0.3
# DOCKER-VERSION 0.2
FROM ubuntu
2013-05-01 16:37:32 -04:00
# make sure the package repository is up to date
RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list
RUN apt-get update
2013-05-01 16:37:32 -04:00
# Install vnc, xvfb in order to create a 'fake' display and firefox
RUN apt-get install -y x11vnc xvfb firefox
RUN mkdir /.vnc
2013-05-01 16:37:32 -04:00
# Setup a password
RUN x11vnc -storepasswd 1234 ~/.vnc/passwd
2013-05-01 16:37:32 -04:00
# Autostart firefox (might not be the best way to do it, but it does the trick)
RUN bash -c 'echo "firefox" >> /.bashrc'
2013-05-02 07:12:42 -04:00
EXPOSE 5900
CMD ["x11vnc", "-forever", "-usepw", "-create"]