We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d03288e commit ee35407Copy full SHA for ee35407
content/manuals/build/bake/expressions.md
@@ -62,7 +62,7 @@ target "default" {
62
dockerfile="Dockerfile"
63
tags = [
64
"my-image:latest",
65
- notequal("",TAG) ? "my-image:${TAG}": "",
+ notequal("",TAG) ? "my-image:${TAG}": ""
66
]
67
}
68
```
content/manuals/build/bake/targets.md
@@ -81,8 +81,8 @@ target "api" {
81
target "tests" {
82
dockerfile = "tests.Dockerfile"
83
contexts = {
84
- webapp = "target:webapp",
85
- api = "target:api",
+ webapp = "target:webapp"
+ api = "target:api"
86
87
output = ["type=local,dest=build/tests"]
88
context = "."
0 commit comments