Docker-Swarm-Loadbalancer/docker-bake.hcl

22 lines
325 B
HCL
Raw Permalink Normal View History

2023-08-18 06:22:13 +00:00
group "default" {
targets = [
"bouncer",
]
}
variable "PLATFORMS" {
default = [
"arm64",
"amd64",
]
}
target "bouncer" {
context = "."
dockerfile = "Dockerfile"
platforms = PLATFORMS
tags = [
"benzine/bouncer:latest",
"ghcr.io/benzine-framework/bouncer:latest",
]
target = "bouncer"
}