This repository has been archived on 2023-03-15. You can view files and clone it, but cannot push or open issues or pull requests.
infrastructure/app/frontend/deploy/frontend-tricot.hcl

61 lines
1.2 KiB
HCL
Raw Permalink Normal View History

2021-12-08 11:21:50 +00:00
job "frontend" {
2021-12-08 11:19:08 +00:00
datacenters = ["dc1", "neptune"]
2021-12-08 12:28:22 +00:00
type = "service"
2021-12-08 11:19:08 +00:00
priority = 90
group "tricot" {
2021-12-08 11:21:50 +00:00
network {
port "http_port" { static = 80 }
port "https_port" { static = 443 }
}
task "server" {
2021-12-08 11:19:08 +00:00
driver = "docker"
config {
2022-05-04 15:27:54 +00:00
image = "lxpz/amd64_tricot:37"
2021-12-08 11:19:08 +00:00
network_mode = "host"
readonly_rootfs = true
2022-05-04 15:33:43 +00:00
ports = [ "http_port", "https_port" ]
2021-12-08 11:21:50 +00:00
}
resources {
2021-12-09 23:26:51 +00:00
cpu = 2000
memory = 500
2021-12-08 11:19:08 +00: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-09 23:26:51 +00:00
TRICOT_ENABLE_COMPRESSION=true
2021-12-09 15:52:16 +00:00
RUST_LOG=tricot=debug
2021-12-08 11:19:08 +00:00
EOH
destination = "secrets/env"
env = true
}
2021-12-08 11:21:50 +00: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 11:19:08 +00:00
}
}
}
}