fix indentations in example

Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
Tonis Tiigi 2020-12-07 21:02:48 -08:00
parent bfd1ea3877
commit 5843e67a90
1 changed files with 8 additions and 8 deletions

View File

@ -749,17 +749,17 @@ variable "TAG" {default="" }
group "default" {
targets = [
"webapp",
]
"webapp",
]
}
target "webapp" {
context="."
dockerfile="Dockerfile"
tags = [
"my-image:latest",
notequal("",TAG) ? "my-image:${TAG}": "",
]
context="."
dockerfile="Dockerfile"
tags = [
"my-image:latest",
notequal("",TAG) ? "my-image:${TAG}": "",
]
}
EOF