diff --git a/jobs/socs/dcusr-listmonk.hcl b/jobs/socs/dcusr-listmonk.hcl new file mode 100644 index 0000000..c8d902a --- /dev/null +++ b/jobs/socs/dcusr-listmonk.hcl @@ -0,0 +1,109 @@ +job "dcusr-listmonk" { + datacenters = ["aperture"] + type = "service" + + meta { + domain = "lists.solarracing.ie" + } + + group "listmonk" { + network { + # mode = "bridge" + port "http" { + } + + port "db" { + to = 5432 + } + } + + service { + name = "listmonk" + port = "http" + + #check { + # type = "http" + # path = "/" + # interval = "10s" + # timeout = "2s" + #} + + tags = [ + "traefik.enable=true", + "traefik.port=${NOMAD_PORT_http}", + "traefik.http.routers.dcusr-listmonk.entrypoints=web,websecure", + "traefik.http.routers.dcusr-listmonk.rule=Host(`${NOMAD_META_domain}`)", + "traefik.http.routers.dcusr-listmonk.tls=true", + "traefik.http.routers.dcusr-listmonk.tls.certresolver=lets-encrypt", + ] + } + + task "app" { + driver = "docker" + + config { + image = "listmonk/listmonk:latest" + ports = ["http"] + + #entrypoint = ["sh", "-c", "sleep 1000000"] + entrypoint = ["./listmonk", "--static-dir=/listmonk/static"] + + volumes = [ + "/storage/nomad/dcusr-listmonk/static:/listmonk/static", + "/storage/nomad/dcusr-listmonk/postgres/:/var/lib/postgresql/data", + "local/config.toml:/listmonk/config.toml" + ] + } + + resources { + cpu = 1000 + memory = 500 + } + + template { + data = <