Beancount & Fava config.
This commit is contained in:
44
services/beancount.hcl
Normal file
44
services/beancount.hcl
Normal file
@@ -0,0 +1,44 @@
|
||||
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"
|
||||
|
||||
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",
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user