Bake 中的变量
您可以在 Bake 文件中定义和使用变量来设置属性值。 将它们插值到其他值中,并执行算术运算。 变量可以使用默认值定义,并且可以用 环境变量。
使用变量作为属性值
使用该模块定义变量。variable
variable "TAG" {
default = "docker.io/username/webapp:latest"
}
以下示例显示如何在目标中使用变量。TAG
target "default" {
context = "."
dockerfile = "Dockerfile"
tags = [ TAG ]
}
将变量插值
Bake 支持将变量字符串内插到值中。您可以使用该语法将变量插入到值中。以下示例
定义值为 .${}
TAG
latest
variable "TAG" {
default = "latest"
}
要将变量内插到属性的值中,请使用语法。TAG
${TAG}
target "default" {
context = "."
dockerfile = "Dockerfile"
tags = ["docker.io/username/webapp:${TAG}"]
}
打印带有标志的 Bake 文件会显示
解析的 build 配置。--print
$ docker buildx bake --print
{
"group": {
"default": {
"targets": ["webapp"]
}
},
"target": {
"webapp": {
"context": ".",
"dockerfile": "Dockerfile",
"tags": ["docker.io/username/webapp:latest"]
}
}
}
验证变量
要验证变量的值是否符合预期类型,请执行 value
range 或其他条件,您可以使用数据块定义自定义验证规则。validation
在以下示例中,验证用于对
变量值;变量必须为 1024 或更高。PORT
# Define a variable `PORT` with a default value and a validation rule
variable "PORT" {
default = 3000 # Default value assigned to `PORT`
# Validation block to ensure `PORT` is a valid number within the acceptable range
validation {
condition = PORT >= 1024 # Ensure `PORT` is at least 1024
error_message = "The variable 'PORT' must be 1024 or higher." # Error message for invalid values
}
}
如果表达式的计算结果为 ,则变量值为
视为无效,因此构建调用失败,并且
排放。例如,如果 ,则条件的计算结果为 、 和
引发错误。condition
false
error_message
PORT=443
false
在设置验证之前,值被强制转换为预期类型。这 确保使用环境变量设置的任何覆盖都能按预期工作。
验证多个条件
要评估多个条件,请为
变量。所有条件都必须为 。validation
true
下面是一个示例:
# Define a variable `VAR` with multiple validation rules
variable "VAR" {
# First validation block: Ensure the variable is not empty
validation {
condition = VAR != ""
error_message = "The variable 'VAR' must not be empty."
}
# Second validation block: Ensure the value contains only alphanumeric characters
validation {
# VAR and the regex match must be identical:
condition = VAR == regex("[a-zA-Z0-9]+", VAR)
error_message = "The variable 'VAR' can only contain letters and numbers."
}
}
此示例强制执行:
- 变量不能为空。
- 该变量必须与特定字符集匹配。
对于像 这样的无效输入,验证将失败。VAR="hello@world"
验证变量依赖关系
您可以在条件表达式中引用其他 Bake 变量,从而启用 强制变量之间依赖关系的验证。这可确保 在继续之前,请正确设置因变量。
下面是一个示例:
# Define a variable `FOO`
variable "FOO" {}
# Define a variable `BAR` with a validation rule that references `FOO`
variable "BAR" {
# Validation block to ensure `FOO` is set if `BAR` is used
validation {
condition = FOO != "" # Check if `FOO` is not an empty string
error_message = "The variable 'BAR' requires 'FOO' to be set."
}
}
此配置可确保仅当已分配非空值时才能使用变量。尝试在不设置的情况下进行构建将触发验证错误。BAR
FOO
FOO
转义变量插值
如果要在解析 Bake 定义时绕过变量插值,请执行以下操作:
使用双美元符号 ()。$${VARIABLE}
target "default" {
dockerfile-inline = <<EOF
FROM alpine
ARG TARGETARCH
RUN echo "Building for $${TARGETARCH/amd64/x64}"
EOF
platforms = ["linux/amd64", "linux/arm64"]
}
$ docker buildx bake --progress=plain
...
#8 [linux/arm64 2/2] RUN echo "Building for arm64"
#8 0.036 Building for arm64
#8 DONE 0.0s
#9 [linux/amd64 2/2] RUN echo "Building for x64"
#9 0.046 Building for x64
#9 DONE 0.1s
...
跨文件的变量中使用变量
当指定多个文件时,一个文件可以使用
另一个文件。在以下示例中,该文件定义了一个默认值为 .vars.hcl
BASE_IMAGE
docker.io/library/alpine
variable "BASE_IMAGE" {
default = "docker.io/library/alpine"
}
以下文件定义了一个变量,该变量
引用变量。docker-bake.hcl
BASE_LATEST
BASE_IMAGE
variable "BASE_LATEST" {
default = "${BASE_IMAGE}:latest"
}
target "default" {
contexts = {
base = BASE_LATEST
}
}
打印解析的构建配置时,使用标志指定
和 文件中,您会看到变量已解析为 .-f
vars.hcl
docker-bake.hcl
BASE_LATEST
docker.io/library/alpine:latest
$ docker buildx bake -f vars.hcl -f docker-bake.hcl --print app
{
"target": {
"default": {
"context": ".",
"contexts": {
"base": "docker.io/library/alpine:latest"
},
"dockerfile": "Dockerfile"
}
}
}
其他资源
以下是一些其他资源,它们演示如何在 Bake 中使用变量: