2017-03-25 18:13:52 -04:00
|
|
|
---
|
2017-06-14 21:04:16 -04:00
|
|
|
description: |
|
|
|
|
The `packer build` command takes a template and runs all the builds within it
|
|
|
|
in order to generate a set of artifacts. The various builds specified within a
|
|
|
|
template are executed in parallel, unless otherwise specified. And the
|
|
|
|
artifacts that are created will be outputted at the end of the build.
|
2017-03-25 18:13:52 -04:00
|
|
|
layout: docs
|
2017-06-14 21:04:16 -04:00
|
|
|
page_title: 'packer build - Commands'
|
|
|
|
sidebar_current: 'docs-commands-build'
|
2017-03-25 18:13:52 -04:00
|
|
|
---
|
|
|
|
|
|
|
|
# `build` Command
|
|
|
|
|
2018-10-26 20:02:51 -04:00
|
|
|
The `packer build` command takes a template and runs all the builds within it
|
|
|
|
in order to generate a set of artifacts. The various builds specified within a
|
|
|
|
template are executed in parallel, unless otherwise specified. And the
|
|
|
|
artifacts that are created will be outputted at the end of the build.
|
2017-03-25 18:13:52 -04:00
|
|
|
|
|
|
|
## Options
|
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `-color=false` - Disables colorized output. Enabled by default.
|
|
|
|
|
2018-10-26 20:02:51 -04:00
|
|
|
- `-debug` - Disables parallelization and enables debug mode. Debug mode
|
|
|
|
flags the builders that they should output debugging information. The exact
|
|
|
|
behavior of debug mode is left to the builder. In general, builders usually
|
|
|
|
will stop between each step, waiting for keyboard input before continuing.
|
|
|
|
This will allow the user to inspect state and so on.
|
2017-06-14 21:04:16 -04:00
|
|
|
|
2019-01-11 08:06:34 -05:00
|
|
|
- `-except=foo,bar,baz` - Run all the builds and post-processors except those
|
2019-02-20 05:47:39 -05:00
|
|
|
with the given comma-separated names. Build names by default are their
|
|
|
|
type, unless a specific `name` attribute is specified within the
|
|
|
|
configuration. Any post-processor following a skipped post-processor will
|
|
|
|
not run. Because post-processors can be nested in arrays a different
|
|
|
|
post-processor chain can still run. A post-processor with an empty name
|
|
|
|
will be ignored.
|
2017-06-14 21:04:16 -04:00
|
|
|
|
|
|
|
- `-force` - Forces a builder to run when artifacts from a previous build
|
2018-10-26 20:02:51 -04:00
|
|
|
prevent a build from running. The exact behavior of a forced build is left
|
|
|
|
to the builder. In general, a builder supporting the forced build will
|
|
|
|
remove the artifacts from the previous build. This will allow the user to
|
|
|
|
repeat a build without having to manually clean these artifacts beforehand.
|
2017-06-14 21:04:16 -04:00
|
|
|
|
|
|
|
- `-on-error=cleanup` (default), `-on-error=abort`, `-on-error=ask` - Selects
|
|
|
|
what to do when the build fails. `cleanup` cleans up after the previous
|
|
|
|
steps, deleting temporary files and virtual machines. `abort` exits without
|
|
|
|
any cleanup, which might require the next build to use `-force`. `ask`
|
2018-10-26 20:02:51 -04:00
|
|
|
presents a prompt and waits for you to decide to clean up, abort, or retry
|
|
|
|
the failed step.
|
2017-06-14 21:04:16 -04:00
|
|
|
|
2019-01-11 08:06:34 -05:00
|
|
|
- `-only=foo,bar,baz` - Only run the builds with the given comma-separated
|
|
|
|
names. Build names by default are their type, unless a specific `name`
|
|
|
|
attribute is specified within the configuration. `-only` does not apply to
|
|
|
|
post-processors.
|
2017-06-14 21:04:16 -04:00
|
|
|
|
|
|
|
- `-parallel=false` - Disable parallelization of multiple builders (on by
|
|
|
|
default).
|
2018-03-25 23:38:41 -04:00
|
|
|
|
2018-10-03 08:40:13 -04:00
|
|
|
- `-timestamp-ui` - Enable prefixing of each ui output with an RFC3339
|
|
|
|
timestamp.
|
2018-09-29 09:09:24 -04:00
|
|
|
|
2018-03-25 23:38:41 -04:00
|
|
|
- `-var` - Set a variable in your packer template. This option can be used
|
|
|
|
multiple times. This is useful for setting version numbers for your build.
|
|
|
|
|
|
|
|
- `-var-file` - Set template variables from a file.
|