Files
glpi-neuroforge-mega/docker-bake.hcl
T
groot d18405ed2e
ci / test (services/knowledge) (push) Successful in 47s
ci / test (services/agent) (push) Successful in 55s
ci / test (platform/neuroforge) (push) Successful in 56s
ci / docker-build (push) Failing after 1m10s
ci / test (services/control) (push) Successful in 1m26s
release-tag / release-image (push) Successful in 6m43s
update-1.6.2
2026-09-09 12:55:35 +02:00

57 lines
1.4 KiB
HCL

variable "IMAGE_TAG" {
default = "1.6.2"
}
variable "REGISTRY" {
default = "git.send.nrw/sendnrw"
}
group "default" {
targets = ["neuroforge", "neuroforge-worker", "agent", "agent-data-init", "knowledge", "control"]
}
target "neuroforge" {
context = "./platform/neuroforge"
dockerfile = "Dockerfile"
target = "server"
tags = ["${REGISTRY}/glpi-neuroforge-mega-neuroforge:${IMAGE_TAG}"]
platforms = ["linux/amd64"]
}
target "neuroforge-worker" {
context = "./platform/neuroforge"
dockerfile = "Dockerfile"
target = "worker"
tags = ["${REGISTRY}/glpi-neuroforge-mega-neuroforge-worker:${IMAGE_TAG}"]
platforms = ["linux/amd64"]
}
target "agent" {
context = "./services/agent"
dockerfile = "Dockerfile"
tags = ["${REGISTRY}/glpi-neuroforge-mega-agent:${IMAGE_TAG}"]
platforms = ["linux/amd64"]
}
target "agent-data-init" {
context = "./services/agent"
dockerfile = "Dockerfile"
target = "data-init"
tags = ["${REGISTRY}/glpi-neuroforge-mega-agent-data-init:${IMAGE_TAG}"]
platforms = ["linux/amd64"]
}
target "knowledge" {
context = "./services/knowledge"
dockerfile = "Dockerfile"
tags = ["${REGISTRY}/glpi-neuroforge-mega-knowledge:${IMAGE_TAG}"]
platforms = ["linux/amd64"]
}
target "control" {
context = "./services/control"
dockerfile = "Dockerfile"
tags = ["${REGISTRY}/glpi-neuroforge-mega-control:${IMAGE_TAG}"]
platforms = ["linux/amd64"]
}