2020-07-21 20:55:44 +01:00
|
|
|
version: "2.3"
|
|
|
|
|
|
|
|
services:
|
|
|
|
plausible:
|
2022-12-13 08:46:09 +00:00
|
|
|
image: plausible/analytics:v1.5
|
2020-08-04 19:38:01 +01:00
|
|
|
restart: unless-stopped
|
2020-08-04 22:07:45 +01:00
|
|
|
command: sh -c "/entrypoint.sh db migrate && /entrypoint.sh run"
|
2020-07-21 20:55:44 +01:00
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
- clickhouse
|
2022-01-15 23:44:06 +00:00
|
|
|
networks:
|
|
|
|
- default
|
|
|
|
- traefik
|
2020-07-21 20:55:44 +01:00
|
|
|
labels:
|
|
|
|
- traefik.enable=true
|
|
|
|
- traefik.http.routers.plausible.rule=Host(`plausible.theorangeone.net`)
|
2020-10-18 22:31:23 +01:00
|
|
|
- traefik.http.services.plausible-plausible.loadbalancer.server.port=8000 # https://github.com/plausible/analytics/pull/237
|
2020-11-25 11:11:29 +00:00
|
|
|
|
2021-10-29 20:47:02 +01:00
|
|
|
- traefik.http.routers.plausible-embed.rule=Host(`elbisualp.theorangeone.net`)
|
|
|
|
- traefik.http.routers.plausible-embed.service=plausible-plausible
|
2020-11-25 11:38:47 +00:00
|
|
|
|
|
|
|
# https://github.com/plausible/analytics/pull/340
|
2020-11-25 11:41:26 +00:00
|
|
|
- traefik.http.middlewares.plausible-index.replacepathregex.regex=/js/index.js
|
2020-11-25 11:38:47 +00:00
|
|
|
- traefik.http.middlewares.plausible-index.replacepathregex.replacement=/js/plausible.js
|
2021-10-29 20:47:02 +01:00
|
|
|
- traefik.http.routers.plausible-embed.middlewares=plausible-index
|
2020-11-25 11:38:47 +00:00
|
|
|
|
2020-07-21 20:55:44 +01:00
|
|
|
environment:
|
2021-12-21 19:57:43 +00:00
|
|
|
- SECRET_KEY_BASE={{ plausible_secret_key }}
|
|
|
|
- SIGNING_SALT={{ plausible_signing_salt }}
|
2020-07-21 20:55:44 +01:00
|
|
|
- DATABASE_URL=postgres://plausible:plausible@db:5432/plausible
|
|
|
|
- DISABLE_REGISTRATION=true
|
|
|
|
- DISABLE_SUBSCRIPTION=true
|
2020-09-17 15:18:01 +01:00
|
|
|
- CLICKHOUSE_DATABASE_URL=http://clickhouse:8123/plausible
|
2020-11-25 11:40:54 +00:00
|
|
|
- BASE_URL=https://elbisualp.theorangeone.net
|
2022-02-13 16:43:09 +00:00
|
|
|
- GOOGLE_CLIENT_ID={{ plausible_google_client_id }}
|
|
|
|
- GOOGLE_CLIENT_SECRET={{ plausible_google_client_secret }}
|
2022-09-22 08:23:30 +01:00
|
|
|
- RELEASE_DISTRIBUTION=none
|
2022-09-22 08:37:00 +01:00
|
|
|
- MAILER_EMAIL={{ plausible_from_email }}
|
|
|
|
- SMTP_HOST_ADDR=smtp.eu.mailgun.org
|
|
|
|
- SMTP_HOST_PORT=465
|
|
|
|
- SMTP_USER_NAME={{ plausible_smtp_user }}
|
|
|
|
- SMTP_USER_PWD={{ plausible_smtp_password }}
|
|
|
|
- SMTP_HOST_SSL_ENABLED=true
|
2020-07-21 20:55:44 +01:00
|
|
|
|
|
|
|
clickhouse:
|
2022-12-13 08:46:09 +00:00
|
|
|
image: clickhouse/clickhouse-server:22.6-alpine
|
2020-08-04 19:38:01 +01:00
|
|
|
restart: unless-stopped
|
2020-07-21 20:55:44 +01:00
|
|
|
volumes:
|
2020-10-03 17:18:11 +01:00
|
|
|
- ./clickhouse:/var/lib/clickhouse
|
|
|
|
- ./docker_related_config.xml:/etc/clickhouse-server/config.d/docker_related_config.xml:ro
|
|
|
|
- ./docker_related_user_config.xml:/etc/clickhouse-server/users.d/docker_related_user_config.xml:ro
|
2020-08-25 22:05:10 +01:00
|
|
|
tmpfs:
|
|
|
|
- /var/log/clickhouse-server
|
2020-07-21 20:55:44 +01:00
|
|
|
ulimits:
|
|
|
|
nofile:
|
|
|
|
soft: 262144
|
|
|
|
hard: 262144
|
|
|
|
|
|
|
|
db:
|
2021-12-22 12:57:49 +00:00
|
|
|
image: postgres:14-alpine
|
2020-07-21 20:55:44 +01:00
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
2021-04-15 18:28:24 +01:00
|
|
|
- ./postgres:/var/lib/postgresql/data
|
2020-07-21 20:55:44 +01:00
|
|
|
environment:
|
|
|
|
- POSTGRES_PASSWORD=plausible
|
|
|
|
- POSTGRES_USER=plausible
|
2022-01-15 23:44:06 +00:00
|
|
|
|
|
|
|
networks:
|
|
|
|
traefik:
|
|
|
|
external: true
|