Fix Environment Variable regarding Postgres username/password

I just spend over 3 hours trying to get this resolved. Was getting a bunch of postgres auth issues and realized it was missing quotes.. :P 

Cheers
This commit is contained in:
M 2023-09-02 22:11:22 -07:00 committed by GitHub
parent ba84dc28d2
commit 00612e47e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -11,7 +11,8 @@ services:
volumes:
- db-data:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=postgres
- "POSTGRES_USER=postgres"
- "POSTGRES_PASSWORD=postgres"
plausible_events_db:
image: clickhouse/clickhouse-server:23.3.7.5-alpine