plausible/docker-compose.yml

34 lines
957 B
YAML
Raw Normal View History

2020-09-29 07:00:52 -05:00
version: "3.3"
services:
plausible_db:
image: postgres:12
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:
2021-03-12 09:53:28 -06:00
image: yandex/clickhouse-server:21.3.2.5
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:
2020-10-05 08:10:41 -05:00
image: plausible/analytics:latest
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
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:
- plausible-conf.env