diff --git a/jobs/services/plausible.hcl b/jobs/services/plausible.hcl index a186b96..55cb336 100644 --- a/jobs/services/plausible.hcl +++ b/jobs/services/plausible.hcl @@ -7,12 +7,15 @@ job "plausible" { port "http" { to = 8000 } - port "db" { + port "clickhouse" { static = 8123 } + port "db" { + static = 5432 + } } - task "plausible" { + task "app" { service { name = "plausible" port = "http" @@ -35,8 +38,11 @@ job "plausible" { driver = "docker" config { - image = "ghcr.io/plausible/community-edition:v2.1.1" + image = "ghcr.io/plausible/community-edition:v2.1" ports = ["http"] + volumes = [ + "/storage/nomad/${NOMAD_JOB_NAME}/${NOMAD_TASK_NAME}:/var/lib/plausible" + ] command = "/bin/sh" args = ["-c", "sleep 10 && /entrypoint.sh db migrate && /entrypoint.sh run"] @@ -44,6 +50,8 @@ job "plausible" { template { data = <