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 6dee901526

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