mirror of
https://github.com/plausible/hosting.git
synced 2024-11-05 07:45:59 -06:00
4ff0b7fbfc
This is done in preparation for adding reverse-proxy configurations Unfortunately a later docker-compose file cannot *remove* a port binding, so it has to be removed in the root file. If there is interest, the 80:8000 binding can be re-added in a new docker-compose overwrite file.
42 lines
853 B
YAML
42 lines
853 B
YAML
version: "3.3"
|
|
services:
|
|
mail:
|
|
image: bytemark/smtp
|
|
restart: always
|
|
|
|
plausible_db:
|
|
image: postgres:12
|
|
volumes:
|
|
- db-data:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_PASSWORD=postgres
|
|
|
|
plausible_events_db:
|
|
image: yandex/clickhouse-server:latest
|
|
volumes:
|
|
- event-data:/var/lib/clickhouse
|
|
ulimits:
|
|
nofile:
|
|
soft: 262144
|
|
hard: 262144
|
|
|
|
plausible:
|
|
image: plausible/analytics:latest
|
|
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-conf.env
|
|
|
|
volumes:
|
|
db-data:
|
|
driver: local
|
|
event-data:
|
|
driver: local
|
|
geoip:
|
|
driver: local
|