Merge pull request #1810 from nicks/patch-1

fix two bugs in bake-reference.md
pull/1787/merge
Tõnis Tiigi 2 years ago committed by GitHub
commit 1dd31fefcb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -69,16 +69,16 @@ The following example shows the same Bake file in the HCL format:
```hcl
variable "TAG" {
"default" = "latest"
default = "latest"
}
group "default" {
"targets" = ["latest"]
targets = ["webapp"]
}
target "webapp" {
"dockerfile" = "Dockerfile"
"tags" = ["docker.io/username/webapp:${TAG}"]
dockerfile = "Dockerfile"
tags = ["docker.io/username/webapp:${TAG}"]
}
```

Loading…
Cancel
Save