From a88b5dfe7b1997fff3dd6d509895a247e194157c Mon Sep 17 00:00:00 2001 From: Megan Marsh Date: Wed, 29 Apr 2020 12:14:49 -0700 Subject: [PATCH] fix documentation for docker tag pp --- website/pages/docs/post-processors/docker-tag.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/pages/docs/post-processors/docker-tag.mdx b/website/pages/docs/post-processors/docker-tag.mdx index 1b41d22f9..6497d2356 100644 --- a/website/pages/docs/post-processors/docker-tag.mdx +++ b/website/pages/docs/post-processors/docker-tag.mdx @@ -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"] } ```