mirror of
https://github.com/docker/metadata-action.git
synced 2024-11-05 03:35:39 +01:00
10e9d5d585
Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
39 lines
527 B
HCL
39 lines
527 B
HCL
target "ghaction-docker-meta" {}
|
|
|
|
group "default" {
|
|
targets = ["db", "app"]
|
|
}
|
|
|
|
group "release" {
|
|
targets = ["db", "app-plus"]
|
|
}
|
|
|
|
target "db" {
|
|
context = "./test"
|
|
tags = ["docker.io/tonistiigi/db"]
|
|
}
|
|
|
|
target "app" {
|
|
inherits = ["ghaction-docker-meta"]
|
|
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"
|
|
}
|
|
}
|