From 00612e47e2bc66c9b5d453402a2defa68dada44b Mon Sep 17 00:00:00 2001 From: M <98937938+NeonMinnen@users.noreply.github.com> Date: Sat, 2 Sep 2023 22:11:22 -0700 Subject: [PATCH] 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 --- docker-compose.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index d14ecf8..c25c9b7 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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