website/deploy/nomad/config/site.nomad
Chinmay D. Pai 6d929483e2
feat: rewrite blog in zola
Signed-off-by: Chinmay D. Pai <chinmaydpai@gmail.com>
2021-05-28 00:10:50 +05:30

50 lines
748 B
HCL

job "maychin-site" {
datacenters = ["asgard", "alfheim"]
type = "service"
group "site" {
count = 1
network {
mode = "bridge"
port "http" {
to = 80
}
}
restart {
attempts = 2
interval = "2m"
delay = "30s"
mode = "fail"
}
service {
name = "maychin-http"
port = "http"
check {
type = "http"
port = "http"
path = "/"
interval = "5s"
timeout = "2s"
}
}
task "maychin" {
driver = "docker"
config {
image = "thunderbottom/site:latest"
ports = ["http"]
}
resources {
cpu = 100
memory = 100
}
}
}
}