highscore-server/docker.bake.hcl

18 lines
314 B
HCL
Raw Normal View History

2023-01-09 22:00:00 +01:00
variable "REG" {
default = "git.snrd.eu"
}
variable "REPO" {
default = "sunred/highscore-server"
2023-01-09 22:00:00 +01:00
}
variable "TAG" {
default = "latest"
}
group "default" {
targets = ["production"]
}
target "production" {
output = ["type=docker"]
tags = ["${REG}/${REPO}:latest", "${REG}/${REPO}:${TAG}"]
}