mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
588a526531
* Reexport PGVERSION and PGBIN according to existing install * Display message if PostgreSQL version deprecated * Do not launch postgres if using external URI * Add script to auto-upgrade postgres database for all-in-one dockerfile * Add documentation for packages and all-in-one docker image
13 lines
338 B
Bash
Executable File
13 lines
338 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -o pipefail
|
|
|
|
PGUSER=${PGUSER:=postgres}
|
|
PGPASSWORD=${PGPASSWORD:=postgres}
|
|
chown -R postgres.postgres "$PGDATA"
|
|
pwfile=$(mktemp)
|
|
echo "$PGPASSWORD" > $pwfile
|
|
chown postgres $pwfile
|
|
su postgres -c "$PGBIN/initdb --pgdata=${PGDATA} --username=${PGUSER} --encoding=unicode --auth=trust --pwfile=$pwfile"
|
|
rm -f $pwfile
|