infra/jobs/velocity.nomad.hcl
2026-08-18 19:19:33 +02:00

26 lines
392 B
HCL

job "velocity" {
type = "service"
group "velocity" {
network {
mode = "bridge"
port "ingress" {
static = 25565
}
dns {
server = ["127.0.0.1"]
}
}
task "velocity" {
driver = "docker"
config {
image = "scrow/velocity:local"
}
resources {
cpu = 1000
memory = 500
}
}
}
}