From f115784a72c58d8a1f845a6e3b92f6d0b2a12ab9 Mon Sep 17 00:00:00 2001 From: Nicolas Quiniou-Briand Date: Fri, 1 May 2020 12:48:25 +0200 Subject: [PATCH] Update example for docker-push (tags) (#9144) * remove useless comment -var-file allow an HCL file * [docs] tag should be comma-separated --- website/pages/docs/post-processors/docker-tag.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/pages/docs/post-processors/docker-tag.mdx b/website/pages/docs/post-processors/docker-tag.mdx index 6497d2356..7cc38643e 100644 --- a/website/pages/docs/post-processors/docker-tag.mdx +++ b/website/pages/docs/post-processors/docker-tag.mdx @@ -53,7 +53,7 @@ An example is shown below, showing only the post-processor configuration: { "type": "docker-tag", "repository": "hashicorp/packer", - "tag": ["0.7", "anothertag"] + "tag": "0.7,anothertag" } ```