Merge pull request #9134 from hashicorp/fix_9131

fix documentation for docker tag pp
This commit is contained in:
Megan Marsh 2020-04-29 13:25:09 -07:00 committed by GitHub
commit ccb1928344
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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. - `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 - `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 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", "type": "docker-tag",
"repository": "hashicorp/packer", "repository": "hashicorp/packer",
"tag": "0.7" "tag": ["0.7", "anothertag"]
} }
``` ```