26 lines
392 B
HCL
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
|
|
}
|
|
}
|
|
}
|
|
}
|