forked from lmm-git/docker-postgres-multi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-entrypoint.sh
executable file
·201 lines (176 loc) · 5.52 KB
/
docker-entrypoint.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
#!/bin/bash
set -e
# usage: file_env VAR [DEFAULT]
# ie: file_env 'XYZ_DB_PASSWORD' 'example'
# (will allow for "$XYZ_DB_PASSWORD_FILE" to fill in the value of
# "$XYZ_DB_PASSWORD" from a file, especially for Docker's secrets feature)
file_env() {
local var="$1"
local fileVar="${var}_FILE"
local def="${2:-}"
if [ "${!var:-}" ] && [ "${!fileVar:-}" ]; then
echo >&2 "error: both $var and $fileVar are set (but are exclusive)"
exit 1
fi
local val="$def"
if [ "${!var:-}" ]; then
val="${!var}"
elif [ "${!fileVar:-}" ]; then
val="$(< "${!fileVar}")"
fi
export "$var"="$val"
unset "$fileVar"
}
if [ "${1:0:1}" = '-' ]; then
set -- postgres "$@"
fi
# allow the container to be started with `--user`
if [ "$1" = 'postgres' ] && [ "$(id -u)" = '0' ]; then
mkdir -p "$PGDATA"
chown -R postgres "$PGDATA"
chmod 700 "$PGDATA"
mkdir -p /var/run/postgresql
chown -R postgres /var/run/postgresql
chmod g+s /var/run/postgresql
exec gosu postgres "$BASH_SOURCE" "$@"
fi
if [ "$1" = 'postgres' ]; then
mkdir -p "$PGDATA"
chown -R "$(id -u)" "$PGDATA" 2>/dev/null || :
chmod 700 "$PGDATA" 2>/dev/null || :
# look specifically for PG_VERSION, as it is expected in the DB dir
if [ ! -s "$PGDATA/PG_VERSION" ]; then
file_env 'POSTGRES_INITDB_ARGS'
eval "initdb --username=postgres $POSTGRES_INITDB_ARGS"
authMethod=trust
if [ "$POSTGRES_USERS" ]; then
USERS_ARR=$(echo $POSTGRES_USERS | tr "|" "\n")
for USER in $USERS_ARR
do
USER_PASSWORD=`echo $USER | cut -d: -f2`
if [ "$USER_PASSWORD" ]; then
authMethod=md5
fi
done
fi
# check password first so we can output the warning before postgres
# messes it up
file_env 'POSTGRES_PASSWORD'
if [ "$POSTGRES_PASSWORD" ]; then
pass="PASSWORD '$POSTGRES_PASSWORD'"
authMethod=md5
else
pass=
fi
if [ "$authMethod" == "trust" ]; then
cat >&2 <<-'EOWARN'
****************************************************
WARNING: No password has been set for the database.
This will allow anyone with access to the
Postgres port to access your database. In
Docker's default configuration, this is
effectively any other container on the same
system.
Use "-e POSTGRES_PASSWORD=password" to set
it in "docker run".
****************************************************
EOWARN
fi
{ echo; echo "host all all all $authMethod"; } | tee -a "$PGDATA/pg_hba.conf" > /dev/null
# internal start of server in order to allow set-up using psql-client
# does not listen on external TCP/IP and waits until start finishes
PGUSER="${PGUSER:-postgres}" \
pg_ctl -D "$PGDATA" \
-o "-c listen_addresses='localhost'" \
-w start
file_env 'POSTGRES_USER' 'postgres'
file_env 'POSTGRES_DB' "$POSTGRES_USER"
psql=( psql -v ON_ERROR_STOP=1 )
if [ "$POSTGRES_DB" != 'postgres' ]; then
"${psql[@]}" --username postgres <<-EOSQL
CREATE DATABASE "$POSTGRES_DB" ;
EOSQL
echo
fi
if [ "$POSTGRES_USER" = 'postgres' ]; then
op='ALTER'
else
op='CREATE'
fi
"${psql[@]}" --username postgres <<-EOSQL
$op USER "$POSTGRES_USER" WITH SUPERUSER $pass ;
EOSQL
echo
psql+=( --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" )
# If you want to create more than one user, please use that variable
# Variable example: POSTGRES_USERS="user1:user1pass|user2:user2pass|user3:user3password"
if [ "$POSTGRES_USERS" ]; then
USERS_ARR=$(echo $POSTGRES_USERS | tr "|" "\n")
for USER in $USERS_ARR
do
USER_NAME=`echo $USER | cut -d: -f1`
USER_PASSWORD=`echo $USER | cut -d: -f2`
if [ "$USER_NAME" = 'postgres' ]; then
op='ALTER'
else
op='CREATE'
fi
"${psql[@]}" --username postgres <<-EOSQL
$op USER "$USER_NAME" WITH SUPERUSER PASSWORD '$USER_PASSWORD' ;
EOSQL
done
fi
# If you want to create more than one database, please use that variable
# Variable example: POSTGRES_DATABASES="database1:user1|database2:user2|database3:user3"
if [ "$POSTGRES_DATABASES" ]; then
DATABASES_ARR=$(echo $POSTGRES_DATABASES | tr "|" "\n")
for DATABASE in $DATABASES_ARR
do
DATABASE_NAME=`echo $DATABASE | cut -d: -f1`
DATABASE_OWNER=`echo $DATABASE | cut -d: -f2`
if [ "$DATABASE_NAME" != 'postgres' ]; then
if [ "$DATABASE_OWNER" ]; then
"${psql[@]}" --username postgres <<-EOSQL
CREATE DATABASE "$DATABASE_NAME" owner "$DATABASE_OWNER" ;
EOSQL
echo
else
"${psql[@]}" --username postgres <<-EOSQL
CREATE DATABASE "$DATABASE_NAME" ;
EOSQL
echo
fi
fi
done
fi
# If you want to set up initial postgresql.conf parameters, please use that variable
# Variable example: POSTGRES_CONFIGS="work_mem:15MB|fsync:off|full_page_writes:off"
if [ "$POSTGRES_CONFIGS" ]; then
CONFIGS_ARR=$(echo $POSTGRES_CONFIGS | tr "|" "\n")
for CONFIG in $CONFIGS_ARR
do
CONFIG_NAME=`echo $CONFIG | cut -d: -f1`
CONFIG_VALUE=`echo $CONFIG | cut -d: -f2`
"${psql[@]}" --username postgres <<-EOSQL
ALTER SYSTEM SET $CONFIG_NAME = "$CONFIG_VALUE" ;
EOSQL
done
fi
echo
for f in /docker-entrypoint-initdb.d/*; do
case "$f" in
*.sh) echo "$0: running $f"; . "$f" ;;
*.sql) echo "$0: running $f"; "${psql[@]}" -f "$f"; echo ;;
*.sql.gz) echo "$0: running $f"; gunzip -c "$f" | "${psql[@]}"; echo ;;
*) echo "$0: ignoring $f" ;;
esac
echo
done
PGUSER="${PGUSER:-postgres}" \
pg_ctl -D "$PGDATA" -m fast -w stop
echo
echo 'PostgreSQL init process complete; ready for start up.'
echo
fi
fi
exec "$@"