plausible-hosting/docker-compose.yml

58 lines
1.6 KiB
YAML
Raw Normal View History

2020-09-29 07:00:52 -05:00
services:
plausible_db:
2024-06-06 08:26:23 -05:00
# Plausible v2.1.1 was tested against PostgreSQL versions 15 and 16
# https://github.com/plausible/analytics/blob/v2.1.1/.github/workflows/elixir.yml#L21-L32
2024-05-23 05:37:11 -05:00
image: postgres:16-alpine
restart: always
2020-09-29 07:00:52 -05:00
volumes:
- db-data:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=postgres
healthcheck:
test: pg_isready
start_interval: 2s
start_period: 1m
2020-09-29 07:00:52 -05:00
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
healthcheck:
test: wget --no-verbose --tries=1 --spider http://127.0.0.1:8123/ping || exit 1
start_interval: 2s
start_period: 1m
2020-09-29 07:00:52 -05:00
ulimits:
nofile:
soft: 262144
hard: 262144
plausible:
2024-06-06 08:23:00 -05:00
image: ghcr.io/plausible/community-edition:v2.1.1
restart: always
2024-07-22 01:47:29 -05:00
command: sh -c "/entrypoint.sh db createdb && /entrypoint.sh db migrate && /entrypoint.sh run"
healthcheck:
test: wget --no-verbose --tries=1 --spider http://127.0.0.1:8000 || exit 1
start_interval: 2s
start_period: 1m
2020-09-29 07:00:52 -05:00
depends_on:
plausible_db:
condition: service_healthy
plausible_events_db:
condition: service_healthy
2020-09-29 07:00:52 -05:00
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