Merge pull request #821 from aruhier/pr_docker

docker: set default postgresql port back to 5432
This commit is contained in:
Trenton Holmes 2022-04-27 18:09:07 -07:00 committed by GitHub
commit c96db31006
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ wait_for_postgres() {
echo "Waiting for PostgreSQL to start..."
host="${PAPERLESS_DBHOST:=localhost}"
port="${PAPERLESS_DBPORT:=5342}"
port="${PAPERLESS_DBPORT:=5432}"
while [ ! "$(pg_isready -h $host -p $port)" ]; do