infrastructure/app/frontend/deploy/frontend-tricot.hcl

61 lines
1.2 KiB
HCL
Raw Normal View History

2021-12-08 12:21:50 +01:00
job "frontend" {
2021-12-08 12:19:08 +01:00
datacenters = ["dc1", "neptune"]
2021-12-08 13:28:22 +01:00
type = "service"
2021-12-08 12:19:08 +01:00
priority = 90
group "tricot" {
2021-12-08 12:21:50 +01:00
network {
port "http_port" { static = 80 }
port "https_port" { static = 443 }
}
task "server" {
2021-12-08 12:19:08 +01:00
driver = "docker"
config {
2022-05-04 17:27:54 +02:00
image = "lxpz/amd64_tricot:37"
2021-12-08 12:19:08 +01:00
network_mode = "host"
readonly_rootfs = true
2022-05-04 17:33:43 +02:00
ports = [ "http_port", "https_port" ]
2021-12-08 12:21:50 +01:00
}
resources {
2021-12-10 00:26:51 +01:00
cpu = 2000
memory = 500
2021-12-08 12:19:08 +01:00
}
restart {
interval = "30m"
attempts = 2
delay = "15s"
mode = "delay"
}
template {
data = <<EOH
TRICOT_NODE_NAME={{ env "attr.unique.hostname" }}
TRICOT_LETSENCRYPT_EMAIL=alex@adnab.me
2021-12-10 00:26:51 +01:00
TRICOT_ENABLE_COMPRESSION=true
2021-12-09 16:52:16 +01:00
RUST_LOG=tricot=debug
2021-12-08 12:19:08 +01:00
EOH
destination = "secrets/env"
env = true
}
2021-12-08 12:21:50 +01:00
service {
name = "tricot-http"
port = "http_port"
tags = [ "(diplonat (tcp_port 80))" ]
address_mode = "host"
}
service {
name = "tricot-https"
port = "https_port"
tags = [ "(diplonat (tcp_port 443))" ]
address_mode = "host"
2021-12-08 12:19:08 +01:00
}
}
}
}