mirror of
https://github.com/plausible/hosting.git
synced 2024-11-17 13:15:58 -06:00
Use docker-compose.override.yml for default setup
This commit is contained in:
parent
c5146231aa
commit
b6d4ba340c
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
docker-compose.custom.yml
|
11
docker-compose.override.yml
Normal file
11
docker-compose.override.yml
Normal file
@ -0,0 +1,11 @@
|
||||
version: "3.3"
|
||||
services:
|
||||
plausible_db:
|
||||
ports:
|
||||
- 5432:5432
|
||||
plausible_events_db:
|
||||
ports:
|
||||
- 8123:8123
|
||||
plausible:
|
||||
ports:
|
||||
- 80:8000
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user