forked from komljen/dockerfile-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart.sh
executable file
·22 lines (22 loc) · 1.1 KB
/
start.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env bash
#===============================================================================
#
# AUTHOR: Alen Komljen <[email protected]>
#
#===============================================================================
CONF="/etc/postgresql/${PG_VERSION}/main/postgresql.conf"
HBA="/etc/postgresql/${PG_VERSION}/main/pg_hba.conf"
DATA="/var/lib/postgresql/${PG_VERSION}/main"
POSTGRES="/usr/lib/postgresql/${PG_VERSION}/bin/postgres"
#-------------------------------------------------------------------------------
echo "host all all 0.0.0.0/0 md5" >> "$HBA"
echo "listen_addresses='*'" >> "$CONF"
#-------------------------------------------------------------------------------
echo "Creating superuser: ${USER}"
su postgres -c "${POSTGRES} --single -D ${DATA} -c config_file=${CONF}" <<EOF
CREATE USER $USER WITH SUPERUSER PASSWORD '$PASS';
EOF
#-------------------------------------------------------------------------------
echo "Starting postgres:"
exec su postgres -c "${POSTGRES} -D ${DATA} -c config_file=${CONF}"
#===============================================================================