fix documentation for docker tag pp

This commit is contained in:
Megan Marsh 2020-04-29 12:14:49 -07:00
parent c0a6623ea2
commit a88b5dfe7b
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ settings are optional.
- `repository` (string) - The repository of the image.
- `tag` (string) - The tag for the image. By default this is not set.
- `tag` (array of strings) - The tag for the image. By default this is not set.
- `force` (boolean) - If true, this post-processor forcibly tag the image
even if tag name is collided. Default to `false`. But it will be ignored if
@ -53,7 +53,7 @@ An example is shown below, showing only the post-processor configuration:
{
"type": "docker-tag",
"repository": "hashicorp/packer",
"tag": "0.7"
"tag": ["0.7", "anothertag"]
}
```