agg-population/nomad/agg-population.nomad.hcl

27 lines
No EOL
380 B
HCL

job "agg-population" {
type = "service"
update {
max_parallel = 1
stagger = "10s"
}
group "api" {
count = 1
network {
port "http" {
static = 3000
}
}
task "api" {
driver = "docker"
config {
image = "ghcr.io/genudine/agg-population/agg-population:latest"
ports = ["http"]
}
}
}
}