2020-09-29 07:00:52 -05:00
|
|
|
version: "3.3"
|
|
|
|
services:
|
|
|
|
mail:
|
|
|
|
image: bytemark/smtp
|
|
|
|
restart: always
|
|
|
|
|
|
|
|
plausible_db:
|
2020-12-07 03:35:04 -06:00
|
|
|
image: postgres:12
|
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:
|
2022-04-23 06:08:56 -05:00
|
|
|
image: clickhouse/clickhouse-server:22.6-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:
|
2020-10-05 08:10:41 -05:00
|
|
|
image: plausible/analytics:latest
|
2021-08-19 04:05:24 -05:00
|
|
|
restart: always
|
2020-10-01 07:50:23 -05:00
|
|
|
command: sh -c "sleep 10 && /entrypoint.sh db createdb && /entrypoint.sh db migrate && /entrypoint.sh db init-admin && /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
|