This commit is contained in:
kento2 2026-08-16 00:26:34 +02:00
commit dede9ce18d
21 changed files with 485 additions and 0 deletions

22
jobs/velocity.nomad.hcl Normal file
View file

@ -0,0 +1,22 @@
job "velocity" {
type = "service"
group "proxy" {
network {
port "minecraft" {
static = 25565
}
}
task "velocity" {
driver = "docker"
config {
image = "scrow/velocity:local"
}
resources {
cpu = 2000
memory = 1000
}
}
}
}