plausible-hosting/docker-compose.yml

44 lines
1.2 KiB
YAML
Raw Permalink Normal View History

2020-09-29 07:00:52 -05:00
services:
plausible_db:
# Plausible v2.0.0 was tested against PostgreSQL versions 12, 13, and 14
# https://github.com/plausible/analytics/blob/v2.0.0/.github/workflows/elixir.yml#L16
2022-09-07 04:01:57 -05:00
image: postgres:14-alpine
restart: always
2020-09-29 07:00:52 -05:00
volumes:
- db-data:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=postgres
plausible_events_db:
2024-05-10 06:52:15 -05:00
image: clickhouse/clickhouse-server:24.3.3.102-alpine
restart: always
2020-09-29 07:00:52 -05:00
volumes:
- event-data:/var/lib/clickhouse
2024-04-15 11:35:54 -05:00
- event-logs:/var/log/clickhouse-server
- ./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:
2024-05-10 06:52:15 -05:00
image: ghcr.io/plausible/community-edition:v2.1.0-rc.1
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:
- 127.0.0.1:8000:8000
2020-09-29 07:00:52 -05:00
env_file:
- plausible-conf.env
volumes:
db-data:
driver: local
event-data:
driver: local
2024-04-15 11:35:54 -05:00
event-logs:
driver: local