Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions build/bake/file-definition.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,61 @@ $ TAG=dev docker buildx bake webapp-dev # will use the TAG environment variable
>
> See also the [Configuring builds](configuring-build.md) page for advanced usage.

### Null values

Null values for `args` and `labels` are supported, so default sets in your
Dockerfile will be used:

```hcl
# docker-bake.hcl
variable "GO_VERSION" {
default = null
}
target "default" {
args = {
GO_VERSION = GO_VERSION
}
}
```

```dockerfile
ARG GO_VERSION="1.18"
FROM golang:${GO_VERSION}
```

```console
$ docker buildx bake --print
```

```json
{
"target": {
"default": {
"context": ".",
"dockerfile": "Dockerfile"
}
}
}
```

```console
$ GO_VERSION=1.19 docker buildx bake --print
```

```json
{
"target": {
"default": {
"context": ".",
"dockerfile": "Dockerfile",
"args": {
"GO_VERSION": "1.19"
}
}
}
}
```

### Functions

A [set of generally useful functions](https://github.com/docker/buildx/blob/master/bake/hclparser/stdlib.go){:target="blank" rel="noopener" class=""}
Expand Down