2020-09-29 07:00:52 -05:00
|
|
|
version: "3.3"
|
|
|
|
services:
|
|
|
|
mail:
|
|
|
|
image: bytemark/smtp
|
|
|
|
restart: always
|
|
|
|
|
|
|
|
plausible_db:
|
2022-09-24 03:35:33 -05:00
|
|
|
# supported versions are 12, 13, and 14
|
2022-09-07 04:01:57 -05:00
|
|
|
image: postgres:14-alpine
|
2021-08-19 04:05:24 -05:00
|
|
|
restart: always
|
2020-09-29 07:00:52 -05:00
|
|
|
volumes:
|
|
|
|
- db-data:/var/lib/postgresql/data
|
|
|
|
environment:
|
|
|
|
- POSTGRES_PASSWORD=postgres
|
|
|
|
|
|
|
|
plausible_events_db:
|
2023-07-08 00:49:15 -05:00
|
|
|
image: clickhouse/clickhouse-server:23.3.7.5-alpine
|
2021-08-19 04:05:24 -05:00
|
|
|
restart: always
|
2020-09-29 07:00:52 -05:00
|
|
|
volumes:
|
|
|
|
- event-data:/var/lib/clickhouse
|
2020-12-07 03:20:50 -06:00
|
|
|
- ./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
|
2020-09-29 07:00:52 -05:00
|
|
|
ulimits:
|
|
|
|
nofile:
|
|
|
|
soft: 262144
|
|
|
|
hard: 262144
|
|
|
|
|
|
|
|
plausible:
|
2023-06-14 05:28:49 -05:00
|
|
|
image: plausible/analytics:v2.0
|
2021-08-19 04:05:24 -05:00
|
|
|
restart: always
|
2022-12-15 22:19:20 -06:00
|
|
|
command: sh -c "sleep 10 && /entrypoint.sh db createdb && /entrypoint.sh db migrate && /entrypoint.sh run"
|
2020-09-29 07:00:52 -05:00
|
|
|
depends_on:
|
|
|
|
- plausible_db
|
|
|
|
- plausible_events_db
|
|
|
|
- mail
|
|
|
|
ports:
|
2020-10-29 23:30:23 -05:00
|
|
|
- 8000:8000
|
2020-09-29 07:00:52 -05:00
|
|
|
env_file:
|
|
|
|
- plausible-conf.env
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
db-data:
|
|
|
|
driver: local
|
|
|
|
event-data:
|
|
|
|
driver: local
|
|
|
|
geoip:
|
|
|
|
driver: local
|