packer-cn/website/source/docs/post-processors/docker-save.html.markdown

40 lines
1.1 KiB
Markdown
Raw Normal View History

---
2015-07-22 22:31:00 -04:00
description: |
The Packer Docker Save post-processor takes an artifact from the docker builder
that was committed and saves it to a file. This is similar to exporting the
Docker image directly from the builder, except that it preserves the hierarchy
of images and metadata.
layout: docs
page_title: 'docker-save Post-Processor'
...
# Docker Save Post-Processor
Type: `docker-save`
2015-07-22 22:31:00 -04:00
The Packer Docker Save post-processor takes an artifact from the [docker
builder](/docs/builders/docker.html) that was committed and saves it to a file.
This is similar to exporting the Docker image directly from the builder, except
that it preserves the hierarchy of images and metadata.
2015-07-22 22:31:00 -04:00
We understand the terminology can be a bit confusing, but we've adopted the
terminology from Docker, so if you're familiar with that, then you'll be
familiar with this and vice versa.
## Configuration
The configuration for this post-processor is extremely simple.
2015-07-22 23:25:58 -04:00
- `path` (string) - The path to save the image.
## Example
An example is shown below, showing only the post-processor configuration:
2015-07-22 22:31:00 -04:00
``` {.javascript}
{
"type": "docker-save",
"path": "foo.tar"
}
```