docker: set default postgresql port back to 5432

Postgresql default port in the docker prepare script has been changed by
mistake to 5342 in commit c2c8a2754. Set it back to 5432.
This commit is contained in:
Anthony Ruhier 2022-04-28 01:57:43 +02:00
parent 2caa2d5b32
commit c66de5931c
No known key found for this signature in database
GPG Key ID: D733393C8684ECCF

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