forked from plausible/community-edition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
74 lines (63 loc) · 2.01 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
version: "3.8"
services:
mail:
image: bytemark/smtp
container_name: plausible_mail
hostname: plausible_mail
restart: always
networks:
- web
- default
plausible_db:
image: postgres:12
container_name: plausible_db
hostname: plausible_db
volumes:
- db-data:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=postgres
plausible_events_db:
image: yandex/clickhouse-server:21.3.2.5
container_name: plausible_events_db
hostname: plausible_events_db
volumes:
- event-data:/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
ulimits:
nofile:
soft: 262144
hard: 262144
plausible:
image: plausible/analytics:latest
container_name: plausible
hostname: plausible
command: sh -c "sleep 10 && /entrypoint.sh db createdb && /entrypoint.sh db migrate && /entrypoint.sh db init-admin && /entrypoint.sh run"
depends_on:
- plausible_db
- plausible_events_db
- mail
ports:
- 8000:8000
env_file:
- plausible/plausible-conf.env
- plausible/plausible-conf.env.override
labels:
traefik.enable: "true"
traefik.http.routers.analytics.rule: "Host(`analytics.jeppe.science`)"
traefik.http.routers.analytics.entrypoints: "websecure"
traefik.http.routers.analytics.tls.certresolver: "letsencrypt"
traefik.http.services.analytics.loadbalancer.server.port: "8000"
networks:
- web
- default
volumes:
db-data:
driver: local
event-data:
driver: local
geoip:
driver: local
networks:
web:
external: true