3
0
Fork 0
mirror of https://gitea.com/docker/metadata-action.git synced 2024-11-22 20:19:33 +01:00
docker-metadata/test/docker-bake.hcl

39 lines
531 B
HCL
Raw Normal View History

target "docker-metadata-action" {}
group "default" {
targets = ["db", "app"]
}
group "release" {
targets = ["db", "app-plus"]
}
target "db" {
context = "./test"
tags = ["docker.io/tonistiigi/db"]
}
target "app" {
inherits = ["docker-metadata-action"]
context = "./test"
dockerfile = "Dockerfile"
args = {
name = "foo"
}
}
target "cross" {
platforms = [
"linux/amd64",
"linux/arm64",
"linux/386"
]
}
target "app-plus" {
inherits = ["app", "cross"]
args = {
IAMPLUS = "true"
}
}