Skip to content

Commit 801b322

Browse files
committed
fix(docker-compose): ENV variables
1 parent 98457b0 commit 801b322

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker-compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ services:
2323
- POSTGRES_USER=postgres
2424
- POSTGRES_PASSWORD=postgres
2525
- POSTGRES_DB=postgres
26-
- POSTGRE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@write-postgres:5432/${POSTGRES_DB}
26+
- POSTGRES_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@write-postgres:5432/${POSTGRES_DB}
2727

2828
write-postgres:
2929
image: postgres:latest
@@ -76,7 +76,7 @@ services:
7676
- GATEWAYD_CLIENTS_DEFAULT_WRITES_ADDRESS=write-postgres:5432
7777
- GATEWAYD_CLIENTS_DEFAULT_READS_ADDRESS=read-postgres:5432
7878
# Use the connection string set in install_plugins
79-
- POSTGRE_URL=${POSTGRE_URL}
79+
- POSTGRES_URL=${POSTGRES_URL}
8080
# - GATEWAYD_LOGGERS_DEFAULT_LEVEL=debug
8181
ports:
8282
# GatewayD server for PostgreSQL clients to connect to

0 commit comments

Comments
 (0)