plausible/docker-compose.yml

35 lines
971 B
YAML
Raw Normal View History

2020-09-29 07:00:52 -05:00
version: "3.3"
services:
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
restart: always
2020-09-29 07:00:52 -05:00
volumes:
2022-04-08 01:27:19 -05:00
- ./data/postgres:/var/lib/postgresql/data
2020-09-29 07:00:52 -05:00
environment:
- POSTGRES_PASSWORD=postgres
plausible_events_db:
2023-07-08 00:49:15 -05:00
image: clickhouse/clickhouse-server:23.3.7.5-alpine
restart: always
2020-09-29 07:00:52 -05:00
volumes:
2022-04-08 01:27:19 -05:00
- ./data/clickhouse:/var/lib/clickhouse
- ./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
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
ports:
2022-04-08 01:27:19 -05:00
- 127.0.0.1:84:8000
2020-09-29 07:00:52 -05:00
env_file:
- .env