Compare commits
No commits in common. "6f4e6322a100ad6bf7e8687d6d67d5f69beaef9e" and "a68f82ec19fbc6b45b27080c105dbaf86e7e8a4a" have entirely different histories.
6f4e6322a1
...
a68f82ec19
3 changed files with 10 additions and 14 deletions
|
|
@ -1,8 +1,12 @@
|
||||||
|
version: "3.3"
|
||||||
services:
|
services:
|
||||||
|
mail:
|
||||||
|
image: bytemark/smtp
|
||||||
|
restart: always
|
||||||
|
|
||||||
plausible_db:
|
plausible_db:
|
||||||
# Plausible v2.1.1 was tested against PostgreSQL versions 15 and 16
|
# supported versions are 12, 13, and 14
|
||||||
# https://github.com/plausible/analytics/blob/v2.1.1/.github/workflows/elixir.yml#L21-L32
|
image: postgres:14-alpine
|
||||||
image: postgres:16-alpine
|
|
||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- db-data:/var/lib/postgresql/data
|
- db-data:/var/lib/postgresql/data
|
||||||
|
|
@ -10,11 +14,10 @@ services:
|
||||||
- POSTGRES_PASSWORD=postgres
|
- POSTGRES_PASSWORD=postgres
|
||||||
|
|
||||||
plausible_events_db:
|
plausible_events_db:
|
||||||
image: clickhouse/clickhouse-server:24.3.3.102-alpine
|
image: clickhouse/clickhouse-server:23.3.7.5-alpine
|
||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- event-data:/var/lib/clickhouse
|
- event-data:/var/lib/clickhouse
|
||||||
- event-logs:/var/log/clickhouse-server
|
|
||||||
- ./clickhouse/clickhouse-config.xml:/etc/clickhouse-server/config.d/logging.xml:ro
|
- ./clickhouse/clickhouse-config.xml:/etc/clickhouse-server/config.d/logging.xml:ro
|
||||||
- ./clickhouse/clickhouse-user-config.xml:/etc/clickhouse-server/users.d/logging.xml:ro
|
- ./clickhouse/clickhouse-user-config.xml:/etc/clickhouse-server/users.d/logging.xml:ro
|
||||||
ulimits:
|
ulimits:
|
||||||
|
|
@ -23,12 +26,13 @@ services:
|
||||||
hard: 262144
|
hard: 262144
|
||||||
|
|
||||||
plausible:
|
plausible:
|
||||||
image: ghcr.io/plausible/community-edition:v2.1.1
|
image: plausible/analytics:v2.0
|
||||||
restart: always
|
restart: always
|
||||||
command: sh -c "sleep 10 && /entrypoint.sh db createdb && /entrypoint.sh db migrate && /entrypoint.sh run"
|
command: sh -c "sleep 10 && /entrypoint.sh db createdb && /entrypoint.sh db migrate && /entrypoint.sh run"
|
||||||
depends_on:
|
depends_on:
|
||||||
- plausible_db
|
- plausible_db
|
||||||
- plausible_events_db
|
- plausible_events_db
|
||||||
|
- mail
|
||||||
ports:
|
ports:
|
||||||
- 127.0.0.1:8000:8000
|
- 127.0.0.1:8000:8000
|
||||||
env_file:
|
env_file:
|
||||||
|
|
@ -39,5 +43,3 @@ volumes:
|
||||||
driver: local
|
driver: local
|
||||||
event-data:
|
event-data:
|
||||||
driver: local
|
driver: local
|
||||||
event-logs:
|
|
||||||
driver: local
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,2 @@
|
||||||
BASE_URL=https://analytics.openneo.net
|
BASE_URL=https://analytics.openneo.net
|
||||||
SECRET_KEY_BASE=lfjsFSKLDFJSDFsdlkcvklsdjcsldfjsdf_EXAMPLE_KEYSMASHES
|
SECRET_KEY_BASE=lfjsFSKLDFJSDFsdlkcvklsdjcsldfjsdf_EXAMPLE_KEYSMASHES
|
||||||
TOTP_VAULT_KEY=jsdklfjsdklfjfSDJKLFJSDFsdlfjsdklfjksdlfOwO
|
|
||||||
|
|
|
||||||
|
|
@ -13,11 +13,6 @@ ExecStartPre=/usr/bin/docker compose down
|
||||||
ExecStart=/usr/bin/docker compose up
|
ExecStart=/usr/bin/docker compose up
|
||||||
ExecStop=/usr/bin/docker compose down
|
ExecStop=/usr/bin/docker compose down
|
||||||
|
|
||||||
# NOTE: The Plausible service seems to go into a "502 Bad Gateway" state
|
|
||||||
# sometimes. Let's restart it every day, just to catch whatever that is. This
|
|
||||||
# will probably result in a few minutes of lost data, and that's okay!
|
|
||||||
RuntimeMaxSec=1d
|
|
||||||
|
|
||||||
; Some security directives, adapted from Akkoma's service file, they seem like sensible defaults!
|
; Some security directives, adapted from Akkoma's service file, they seem like sensible defaults!
|
||||||
; Use private /tmp and /var/tmp folders inside a new file system namespace, which are discarded after the process stops.
|
; Use private /tmp and /var/tmp folders inside a new file system namespace, which are discarded after the process stops.
|
||||||
PrivateTmp=true
|
PrivateTmp=true
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue