Skip to content

Commit b4aa5c0

Browse files
committed
https://github.com/getodk/central/pull/1671#discussion_r2897275363
1 parent d0b7dcc commit b4aa5c0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docker-compose.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ services:
5959
# 1. PGVAR specified in .env. This includes declarations with empty values, for instance, to use an empty password (PGPASSWORD=).
6060
# 2. Corresponding legacy DB_VAR in .env. These are legacy overrides for custom database connections.
6161
# 3. ODK default value.
62-
- PGHOST=${PGHOST-${DB_HOST-postgres14}}
63-
- PGDATABASE=${PGDATABASE-${DB_NAME-central}}
64-
- PGUSER=${PGUSER-${DB_USER-odk}}
65-
- PGPASSWORD=${PGPASSWORD-${DB_PASSWORD-odk}}
66-
- PGAPPNAME=${PGAPPNAME-odkcentral}
62+
- PGHOST=${PGHOST-${DB_HOST:-postgres14}}
63+
- PGDATABASE=${PGDATABASE-${DB_NAME:-central}}
64+
- PGUSER=${PGUSER-${DB_USER:-odk}}
65+
- PGPASSWORD=${PGPASSWORD-${DB_PASSWORD:-odk}}
66+
- PGAPPNAME=${PGAPPNAME:-odkcentral}
6767
# End of libpq connection env var preparation.
6868
- DB_POOL_SIZE=${DB_POOL_SIZE:-10}
6969
- EMAIL_FROM=${EMAIL_FROM:-no-reply@$DOMAIN}

0 commit comments

Comments
 (0)