Files
alo-cluster/services/beancount.hcl
2024-02-06 05:08:55 +00:00

50 lines
1010 B
HCL

job "beancount" {
datacenters = ["alo"]
# force each evaluation to be different, so that the jobspec changes, so that the latest image is pulled
# otherwise, nomad run ends up not doing anything even if the latest image is different
meta {
uuid = uuidv4()
}
group "web" {
network {
port "http" {
to = 5000
}
}
task "fava" {
driver = "docker"
user = "1000"
config {
image = "gitea.v.paler.net/ppetru/fava:latest"
ports = ["http"]
volumes = [
"/data/compute/appdata/beancount:/beancount",
]
}
env {
BEANCOUNT_FILE = "/beancount/pi.beancount"
}
service {
name = "finances"
port = "http"
tags = [
"traefik.enable=true",
"traefik.http.routers.finances.entryPoints=websecure",
"traefik.http.routers.finances.middlewares=authentik@file",
]
}
resources {
memory = 400
}
}
}
}