Use docker-compose.override.yml for default setup

This commit is contained in:
Michał Zając 2020-10-06 17:58:16 +02:00
parent c5146231aa
commit b6d4ba340c
3 changed files with 12 additions and 6 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
docker-compose.custom.yml

View File

@ -0,0 +1,11 @@
version: "3.3"
services:
plausible_db:
ports:
- 5432:5432
plausible_events_db:
ports:
- 8123:8123
plausible:
ports:
- 80:8000

View File

@ -10,8 +10,6 @@ services:
- db-data:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=postgres
ports:
- 5432:5432
plausible_events_db:
image: yandex/clickhouse-server:latest
@ -21,8 +19,6 @@ services:
nofile:
soft: 262144
hard: 262144
ports:
- 8123:8123
plausible:
image: plausible/analytics:latest
@ -31,8 +27,6 @@ services:
- plausible_db
- plausible_events_db
- mail
ports:
- 80:8000
links:
- plausible_db
- plausible_events_db