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
|
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
|
2024-07-16 04:06:01 -05:00
|
|
|
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
|
2021-08-19 04:05:24 -05:00
|
|
|
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
|
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
|
2024-07-16 04:06:01 -05:00
|
|
|
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
|
2021-08-19 04:05:24 -05:00
|
|
|
restart: always
|
2024-08-02 10:35:05 -05:00
|
|
|
command: sh -c "sleep 10 && /entrypoint.sh db createdb && /entrypoint.sh db migrate && /entrypoint.sh run"
|
2024-07-16 04:06:01 -05:00
|
|
|
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:
|
2024-07-16 04:06:01 -05:00
|
|
|
plausible_db:
|
|
|
|
condition: service_healthy
|
|
|
|
plausible_events_db:
|
|
|
|
condition: service_healthy
|
2020-09-29 07:00:52 -05:00
|
|
|
ports:
|
2024-02-23 11:50:30 -06:00
|
|
|
- 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
|