2017-06-25 22:36:15 -04:00
|
|
|
---
|
2017-06-14 21:04:16 -04:00
|
|
|
description: |
|
|
|
|
The docker Packer builder builds Docker images using Docker. The builder
|
|
|
|
starts a Docker container, runs provisioners within this container, then
|
|
|
|
exports the container for reuse or commits the image.
|
2015-07-22 22:31:00 -04:00
|
|
|
layout: docs
|
2017-06-14 21:04:16 -04:00
|
|
|
page_title: 'Docker - Builders'
|
|
|
|
sidebar_current: 'docs-builders-docker'
|
2017-03-25 18:13:52 -04:00
|
|
|
---
|
2013-11-09 16:28:00 -05:00
|
|
|
|
|
|
|
# Docker Builder
|
|
|
|
|
|
|
|
Type: `docker`
|
|
|
|
|
2016-01-14 15:31:19 -05:00
|
|
|
The `docker` Packer builder builds [Docker](https://www.docker.io) images using
|
2015-07-22 22:31:00 -04:00
|
|
|
Docker. The builder starts a Docker container, runs provisioners within this
|
|
|
|
container, then exports the container for reuse or commits the image.
|
|
|
|
|
|
|
|
Packer builds Docker containers *without* the use of
|
2017-06-05 00:32:59 -04:00
|
|
|
[Dockerfiles](https://docs.docker.com/engine/reference/builder/). By not using
|
|
|
|
`Dockerfiles`, Packer is able to provision containers with portable scripts or
|
2015-07-22 22:31:00 -04:00
|
|
|
configuration management systems that are not tied to Docker in any way. It also
|
2017-06-05 00:32:59 -04:00
|
|
|
has a simple mental model: you provision containers much the same way you
|
2015-07-22 22:31:00 -04:00
|
|
|
provision a normal virtualized or dedicated server. For more information, read
|
2016-12-01 04:48:19 -05:00
|
|
|
the section on [Dockerfiles](#dockerfiles).
|
2013-11-09 22:40:38 -05:00
|
|
|
|
|
|
|
The Docker builder must run on a machine that has Docker installed. Therefore
|
2017-06-05 00:32:59 -04:00
|
|
|
the builder only works on machines that support Docker. You can learn about
|
|
|
|
what [platforms Docker supports and how to install onto them](https://docs.docker.com/engine/installation/) in the Docker documentation.
|
2013-11-09 16:28:00 -05:00
|
|
|
|
2014-09-05 00:29:29 -04:00
|
|
|
## Basic Example: Export
|
2013-11-09 16:28:00 -05:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
Below is a fully functioning example. It doesn't do anything useful, since no
|
|
|
|
provisioners are defined, but it will effectively repackage an image.
|
2013-11-09 16:28:00 -05:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
``` json
|
2013-11-09 16:28:00 -05:00
|
|
|
{
|
|
|
|
"type": "docker",
|
|
|
|
"image": "ubuntu",
|
|
|
|
"export_path": "image.tar"
|
|
|
|
}
|
2014-10-20 13:55:16 -04:00
|
|
|
```
|
2013-11-09 16:28:00 -05:00
|
|
|
|
2014-09-05 00:29:29 -04:00
|
|
|
## Basic Example: Commit
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
Below is another example, the same as above but instead of exporting the running
|
|
|
|
container, this one commits the container to an image. The image can then be
|
|
|
|
more easily tagged, pushed, etc.
|
2014-09-05 00:29:29 -04:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
``` json
|
2014-09-05 00:29:29 -04:00
|
|
|
{
|
|
|
|
"type": "docker",
|
|
|
|
"image": "ubuntu",
|
|
|
|
"commit": true
|
|
|
|
}
|
2014-10-20 13:55:16 -04:00
|
|
|
```
|
2014-09-05 00:29:29 -04:00
|
|
|
|
2017-01-23 18:19:56 -05:00
|
|
|
## Basic Example: Changes to Metadata
|
|
|
|
|
2017-06-05 13:17:53 -04:00
|
|
|
Below is an example using the changes argument of the builder. This feature
|
|
|
|
allows the source images metadata to be changed when committed back into the
|
|
|
|
Docker environment. It is derived from the `docker commit --change` command
|
|
|
|
line [option to
|
|
|
|
Docker](https://docs.docker.com/engine/reference/commandline/commit/).
|
2017-01-23 18:19:56 -05:00
|
|
|
|
2017-06-05 13:17:53 -04:00
|
|
|
Example uses of all of the options, assuming one is building an NGINX image
|
|
|
|
from ubuntu as an simple example:
|
2017-01-23 18:19:56 -05:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
``` json
|
2017-01-23 18:19:56 -05:00
|
|
|
{
|
2017-03-25 18:13:52 -04:00
|
|
|
"type": "docker",
|
|
|
|
"image": "ubuntu",
|
|
|
|
"commit": true,
|
|
|
|
"changes": [
|
|
|
|
"USER www-data",
|
|
|
|
"WORKDIR /var/www",
|
|
|
|
"ENV HOSTNAME www.example.com",
|
|
|
|
"VOLUME /test1 /test2",
|
|
|
|
"EXPOSE 80 443",
|
2017-05-09 18:45:26 -04:00
|
|
|
"LABEL version=1.0",
|
2017-05-09 18:47:04 -04:00
|
|
|
"ONBUILD RUN date",
|
2017-03-25 18:13:52 -04:00
|
|
|
"CMD [\"nginx\", \"-g\", \"daemon off;\"]",
|
|
|
|
"ENTRYPOINT /var/www/start.sh"
|
|
|
|
]
|
2017-01-23 18:19:56 -05:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Allowed metadata fields that can be changed are:
|
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- CMD
|
|
|
|
- String, supports both array (escaped) and string form
|
|
|
|
- EX: `"CMD [\"nginx\", \"-g\", \"daemon off;\"]"`
|
|
|
|
- EX: `"CMD nginx -g daemon off;"`
|
|
|
|
- ENTRYPOINT
|
|
|
|
- String
|
|
|
|
- EX: `"ENTRYPOINT /var/www/start.sh"`
|
|
|
|
- ENV
|
|
|
|
- String, note there is no equal sign:
|
|
|
|
- EX: `"ENV HOSTNAME www.example.com"` not `"ENV HOSTNAME=www.example.com"`
|
|
|
|
- EXPOSE
|
|
|
|
- String, space separated ports
|
|
|
|
- EX: `"EXPOSE 80 443"`
|
|
|
|
- LABEL
|
|
|
|
- String, space separated key=value pairs
|
|
|
|
- EX: `"LABEL version=1.0"`
|
|
|
|
- ONBUILD
|
|
|
|
- String
|
|
|
|
- EX: `"ONBUILD RUN date"`
|
|
|
|
- MAINTAINER
|
|
|
|
- String, deprecated in Docker version 1.13.0
|
|
|
|
- EX: `"MAINTAINER NAME"`
|
|
|
|
- USER
|
|
|
|
- String
|
|
|
|
- EX: `"USER USERNAME"`
|
|
|
|
- VOLUME
|
|
|
|
- String
|
|
|
|
- EX: `"VOLUME FROM TO"`
|
|
|
|
- WORKDIR
|
|
|
|
- String
|
|
|
|
- EX: `"WORKDIR PATH"`
|
2017-01-23 18:19:56 -05:00
|
|
|
|
2013-11-09 16:28:00 -05:00
|
|
|
## Configuration Reference
|
|
|
|
|
2013-12-25 05:17:37 -05:00
|
|
|
Configuration options are organized below into two categories: required and
|
|
|
|
optional. Within each category, the available options are alphabetized and
|
|
|
|
described.
|
2013-11-09 20:22:39 -05:00
|
|
|
|
2015-06-23 17:44:57 -04:00
|
|
|
In addition to the options listed here, a
|
2015-07-22 22:31:00 -04:00
|
|
|
[communicator](/docs/templates/communicator.html) can be configured for this
|
|
|
|
builder.
|
2015-06-23 17:44:57 -04:00
|
|
|
|
2014-05-04 13:47:40 -04:00
|
|
|
### Required:
|
2013-11-09 16:28:00 -05:00
|
|
|
|
2015-08-18 19:47:58 -04:00
|
|
|
You must specify (only) one of `commit`, `discard`, or `export_path`.
|
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `commit` (boolean) - If true, the container will be committed to an image
|
2015-08-18 19:47:58 -04:00
|
|
|
rather than exported.
|
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `discard` (boolean) - Throw away the container when the build is complete.
|
2015-08-18 19:47:58 -04:00
|
|
|
This is useful for the [artifice
|
2016-01-14 15:33:00 -05:00
|
|
|
post-processor](https://www.packer.io/docs/post-processors/artifice.html).
|
2014-09-05 00:29:29 -04:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `export_path` (string) - The path where the final container will be exported
|
2015-08-18 19:47:58 -04:00
|
|
|
as a tar file.
|
2013-11-09 16:28:00 -05:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `image` (string) - The base image for the Docker container that will
|
2015-07-22 23:25:58 -04:00
|
|
|
be started. This image will be pulled from the Docker registry if it doesn't
|
|
|
|
already exist.
|
2013-11-09 16:28:00 -05:00
|
|
|
|
2014-05-04 13:47:40 -04:00
|
|
|
### Optional:
|
2013-11-09 20:22:39 -05:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `author` (string) - Set the author (e-mail) of a commit.
|
2016-11-26 12:34:49 -05:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `aws_access_key` (string) - The AWS access key used to communicate with AWS.
|
2016-09-03 10:45:52 -04:00
|
|
|
[Learn how to set this.](/docs/builders/amazon.html#specifying-amazon-credentials)
|
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `aws_secret_key` (string) - The AWS secret key used to communicate with AWS.
|
2016-09-03 10:45:52 -04:00
|
|
|
[Learn how to set this.](/docs/builders/amazon.html#specifying-amazon-credentials)
|
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `aws_token` (string) - The AWS access token to use. This is different from the
|
2016-09-03 10:45:52 -04:00
|
|
|
access key and secret key. If you're not sure what this is, then you
|
|
|
|
probably don't need it. This will also be read from the `AWS_SESSION_TOKEN`
|
|
|
|
environmental variable.
|
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `changes` (array of strings) - Dockerfile instructions to add to the commit.
|
2016-11-26 12:34:49 -05:00
|
|
|
Example of instructions are `CMD`, `ENTRYPOINT`, `ENV`, and `EXPOSE`. Example:
|
|
|
|
`[ "USER ubuntu", "WORKDIR /app", "EXPOSE 8080" ]`
|
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `ecr_login` (boolean) - Defaults to false. If true, the builder will login in
|
2016-09-03 10:45:52 -04:00
|
|
|
order to pull the image from
|
|
|
|
[Amazon EC2 Container Registry (ECR)](https://aws.amazon.com/ecr/).
|
|
|
|
The builder only logs in for the duration of the pull. If true
|
|
|
|
`login_server` is required and `login`, `login_username`, and
|
2016-12-01 04:52:33 -05:00
|
|
|
`login_password` will be ignored. For more information see the
|
|
|
|
[section on ECR](#amazon-ec2-container-registry).
|
2016-09-03 10:45:52 -04:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `login` (boolean) - Defaults to false. If true, the builder will login in
|
2015-07-22 23:25:58 -04:00
|
|
|
order to pull the image. The builder only logs in for the duration of
|
2016-09-03 10:45:52 -04:00
|
|
|
the pull. It always logs out afterwards. For log into ECR see `ecr_login`.
|
2014-09-05 18:24:12 -04:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `login_email` (string) - The email to use to authenticate to login.
|
2014-09-05 18:24:12 -04:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `login_username` (string) - The username to use to authenticate to login.
|
2014-09-05 18:24:12 -04:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `login_password` (string) - The password to use to authenticate to login.
|
2014-09-05 18:24:12 -04:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `login_server` (string) - The server address to login to.
|
2014-09-05 18:24:12 -04:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `message` (string) - Set a message for the commit.
|
2016-11-26 12:34:49 -05:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `privileged` (boolean) - If true, run the docker container with the
|
2016-07-12 10:40:26 -04:00
|
|
|
`--privileged` flag. This defaults to false if not set.
|
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `pull` (boolean) - If true, the configured image will be pulled using
|
2015-07-22 23:25:58 -04:00
|
|
|
`docker pull` prior to use. Otherwise, it is assumed the image already
|
|
|
|
exists and can be used. This defaults to true if not set.
|
2013-11-09 20:22:39 -05:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `run_command` (array of strings) - An array of arguments to pass to
|
2015-07-22 23:25:58 -04:00
|
|
|
`docker run` in order to run the container. By default this is set to
|
|
|
|
`["-d", "-i", "-t", "{{.Image}}", "/bin/bash"]`. As you can see, you have a
|
|
|
|
couple template variables to customize, as well.
|
2013-12-27 12:17:45 -05:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `volumes` (map of strings to strings) - A mapping of additional volumes to
|
2015-07-22 23:25:58 -04:00
|
|
|
mount into this container. The key of the object is the host path, the value
|
|
|
|
is the container path.
|
2014-09-05 18:48:42 -04:00
|
|
|
|
2014-09-05 00:29:29 -04:00
|
|
|
## Using the Artifact: Export
|
2013-12-24 20:40:13 -05:00
|
|
|
|
2013-12-25 05:17:37 -05:00
|
|
|
Once the tar artifact has been generated, you will likely want to import, tag,
|
2014-01-19 23:42:42 -05:00
|
|
|
and push it to a container repository. Packer can do this for you automatically
|
|
|
|
with the [docker-import](/docs/post-processors/docker-import.html) and
|
|
|
|
[docker-push](/docs/post-processors/docker-push.html) post-processors.
|
2013-12-24 20:40:13 -05:00
|
|
|
|
2014-09-05 00:29:29 -04:00
|
|
|
**Note:** This section is covering how to use an artifact that has been
|
2015-07-22 22:31:00 -04:00
|
|
|
*exported*. More specifically, if you set `export_path` in your configuration.
|
2014-09-05 00:29:29 -04:00
|
|
|
If you set `commit`, see the next section.
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
The example below shows a full configuration that would import and push the
|
|
|
|
created image. This is accomplished using a sequence definition (a collection of
|
|
|
|
post-processors that are treated as as single pipeline, see
|
|
|
|
[Post-Processors](/docs/templates/post-processors.html) for more information):
|
2014-01-19 23:42:42 -05:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
``` json
|
2014-01-19 23:42:42 -05:00
|
|
|
{
|
2014-10-20 13:55:16 -04:00
|
|
|
"post-processors": [
|
2015-07-22 22:31:00 -04:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"type": "docker-import",
|
2017-06-25 22:34:23 -04:00
|
|
|
"repository": "hashicorp/packer",
|
2015-07-22 22:31:00 -04:00
|
|
|
"tag": "0.7"
|
|
|
|
},
|
|
|
|
"docker-push"
|
|
|
|
]
|
|
|
|
]
|
2014-01-19 23:42:42 -05:00
|
|
|
}
|
2014-10-20 13:55:16 -04:00
|
|
|
```
|
2014-01-19 23:42:42 -05:00
|
|
|
|
2015-06-30 08:16:31 -04:00
|
|
|
In the above example, the result of each builder is passed through the defined
|
|
|
|
sequence of post-processors starting first with the `docker-import`
|
|
|
|
post-processor which will import the artifact as a docker image. The resulting
|
|
|
|
docker image is then passed on to the `docker-push` post-processor which handles
|
|
|
|
pushing the image to a container repository.
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
If you want to do this manually, however, perhaps from a script, you can import
|
|
|
|
the image using the process below:
|
2014-01-19 23:42:42 -05:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
``` shell
|
2014-10-20 13:55:16 -04:00
|
|
|
$ docker import - registry.mydomain.com/mycontainer:latest < artifact.tar
|
|
|
|
```
|
2013-12-24 20:40:13 -05:00
|
|
|
|
2013-12-25 05:17:37 -05:00
|
|
|
You can then add additional tags and push the image as usual with `docker tag`
|
|
|
|
and `docker push`, respectively.
|
2013-12-24 20:40:13 -05:00
|
|
|
|
2014-09-05 00:29:29 -04:00
|
|
|
## Using the Artifact: Committed
|
|
|
|
|
2015-06-30 08:16:31 -04:00
|
|
|
If you committed your container to an image, you probably want to tag, save,
|
|
|
|
push, etc. Packer can do this automatically for you. An example is shown below
|
2015-07-22 22:31:00 -04:00
|
|
|
which tags and pushes an image. This is accomplished using a sequence definition
|
|
|
|
(a collection of post-processors that are treated as as single pipeline, see
|
|
|
|
[Post-Processors](/docs/templates/post-processors.html) for more information):
|
2014-09-05 00:29:29 -04:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
``` json
|
2014-09-05 00:29:29 -04:00
|
|
|
{
|
2014-10-20 13:55:16 -04:00
|
|
|
"post-processors": [
|
2015-07-22 22:31:00 -04:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"type": "docker-tag",
|
2017-06-25 22:34:23 -04:00
|
|
|
"repository": "hashicorp/packer",
|
2015-07-22 22:31:00 -04:00
|
|
|
"tag": "0.7"
|
|
|
|
},
|
|
|
|
"docker-push"
|
|
|
|
]
|
|
|
|
]
|
2014-09-05 00:29:29 -04:00
|
|
|
}
|
2014-10-20 13:55:16 -04:00
|
|
|
```
|
2014-09-05 00:29:29 -04:00
|
|
|
|
2015-06-30 08:16:31 -04:00
|
|
|
In the above example, the result of each builder is passed through the defined
|
|
|
|
sequence of post-processors starting first with the `docker-tag` post-processor
|
|
|
|
which tags the committed image with the supplied repository and tag information.
|
|
|
|
Once tagged, the resulting artifact is then passed on to the `docker-push`
|
|
|
|
post-processor which handles pushing the image to a container repository.
|
|
|
|
|
|
|
|
Going a step further, if you wanted to tag and push an image to multiple
|
|
|
|
container repositories, this could be accomplished by defining two,
|
|
|
|
nearly-identical sequence definitions, as demonstrated by the example below:
|
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
``` json
|
2015-06-30 08:16:31 -04:00
|
|
|
{
|
2015-07-22 22:31:00 -04:00
|
|
|
"post-processors": [
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"type": "docker-tag",
|
2017-06-25 22:34:23 -04:00
|
|
|
"repository": "hashicorp/packer",
|
2015-07-22 22:31:00 -04:00
|
|
|
"tag": "0.7"
|
|
|
|
},
|
|
|
|
"docker-push"
|
|
|
|
],
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"type": "docker-tag",
|
|
|
|
"repository": "hashicorp/packer",
|
|
|
|
"tag": "0.7"
|
|
|
|
},
|
|
|
|
"docker-push"
|
|
|
|
]
|
|
|
|
]
|
2015-06-30 08:16:31 -04:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2016-01-13 11:24:32 -05:00
|
|
|
<span id="amazon-ec2-container-registry"></span>
|
|
|
|
|
|
|
|
## Amazon EC2 Container Registry
|
|
|
|
|
|
|
|
Packer can tag and push images for use in
|
|
|
|
[Amazon EC2 Container Registry](https://aws.amazon.com/ecr/). The post
|
|
|
|
processors work as described above and example configuration properties are
|
|
|
|
shown below:
|
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
``` json
|
2016-01-13 11:24:32 -05:00
|
|
|
{
|
|
|
|
"post-processors": [
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"type": "docker-tag",
|
|
|
|
"repository": "12345.dkr.ecr.us-east-1.amazonaws.com/packer",
|
|
|
|
"tag": "0.7"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "docker-push",
|
2016-09-03 10:45:52 -04:00
|
|
|
"ecr_login": true,
|
|
|
|
"aws_access_key": "YOUR KEY HERE",
|
|
|
|
"aws_secret_key": "YOUR SECRET KEY HERE",
|
2016-01-13 11:24:32 -05:00
|
|
|
"login_server": "https://12345.dkr.ecr.us-east-1.amazonaws.com/"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2016-09-03 10:45:52 -04:00
|
|
|
[Learn how to set Amazon AWS credentials.](/docs/builders/amazon.html#specifying-amazon-credentials)
|
2016-01-13 11:24:32 -05:00
|
|
|
|
2013-11-09 16:28:00 -05:00
|
|
|
## Dockerfiles
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
This builder allows you to build Docker images *without* Dockerfiles.
|
2013-11-09 16:59:34 -05:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
With this builder, you can repeatably create Docker images without the use of a
|
|
|
|
Dockerfile. You don't need to know the syntax or semantics of Dockerfiles.
|
2013-11-09 16:59:34 -05:00
|
|
|
Instead, you can just provide shell scripts, Chef recipes, Puppet manifests,
|
2013-11-09 22:40:38 -05:00
|
|
|
etc. to provision your Docker container just like you would a regular
|
|
|
|
virtualized or dedicated machine.
|
|
|
|
|
2016-09-03 10:45:52 -04:00
|
|
|
While Docker has many features, Packer views Docker simply as an container
|
|
|
|
runner. To that end, Packer is able to repeatably build these containers
|
2015-07-22 22:31:00 -04:00
|
|
|
using portable provisioning scripts.
|
2013-11-09 22:40:38 -05:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
Dockerfiles have some additional features that Packer doesn't support which are
|
|
|
|
able to be worked around. Many of these features will be automated by Packer in
|
|
|
|
the future:
|
2013-11-09 22:40:38 -05:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- Dockerfiles will snapshot the container at each step, allowing you to go
|
2015-07-22 23:25:58 -04:00
|
|
|
back to any step in the history of building. Packer doesn't do this yet, but
|
|
|
|
inter-step snapshotting is on the way.
|
2013-11-09 22:40:38 -05:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- Dockerfiles can contain information such as exposed ports, shared volumes,
|
2015-07-22 23:25:58 -04:00
|
|
|
and other metadata. Packer builds a raw Docker container image that has none
|
|
|
|
of this metadata. You can pass in much of this metadata at runtime with
|
|
|
|
`docker run`.
|
2017-02-21 17:50:06 -05:00
|
|
|
|
|
|
|
## Overriding the host directory
|
|
|
|
|
|
|
|
By default, Packer creates a temporary folder under your home directory, and
|
|
|
|
uses that to stage files for uploading into the container. If you would like to
|
|
|
|
change the path to this temporary folder, you can set the `PACKER_TMP_DIR`
|
|
|
|
environment variable. This can be useful, for example, if you have your home
|
|
|
|
directory permissions set up to disallow access from the docker daemon.
|