mirror of https://github.com/docker/docs.git
Merge pull request #14061 from bigsky-033/patch-1
Fix typo on PGDATABASE environment variable
This commit is contained in:
commit
64cd649161
|
@ -548,7 +548,7 @@ services:
|
||||||
- PGPASSWORD=${PGPASSWORD:?database password not set}
|
- PGPASSWORD=${PGPASSWORD:?database password not set}
|
||||||
- PGHOST=${PGHOST:-db}
|
- PGHOST=${PGHOST:-db}
|
||||||
- PGPORT=${PGPORT:-26257}
|
- PGPORT=${PGPORT:-26257}
|
||||||
- PGDATABASE=${PGDATABASE-mydb}
|
- PGDATABASE=${PGDATABASE:-mydb}
|
||||||
deploy:
|
deploy:
|
||||||
restart_policy:
|
restart_policy:
|
||||||
condition: on-failure
|
condition: on-failure
|
||||||
|
|
Loading…
Reference in New Issue