@@ -44,7 +44,7 @@ docker_create_db_directories() {
44
44
chmod 775 /var/run/postgresql || :
45
45
46
46
# Create the transaction log directory before initdb is run so the directory is owned by the correct user
47
- if [ " $POSTGRES_INITDB_XLOGDIR " ]; then
47
+ if [ -n " $POSTGRES_INITDB_XLOGDIR " ]; then
48
48
mkdir -p " $POSTGRES_INITDB_XLOGDIR "
49
49
if [ " $user " = ' 0' ]; then
50
50
find " $POSTGRES_INITDB_XLOGDIR " \! -user postgres -exec chown postgres ' {}' +
@@ -74,7 +74,7 @@ docker_init_database_dir() {
74
74
echo " postgres:x:$( id -g) :" > " $NSS_WRAPPER_GROUP "
75
75
fi
76
76
77
- if [ " $POSTGRES_INITDB_XLOGDIR " ]; then
77
+ if [ -n " $POSTGRES_INITDB_XLOGDIR " ]; then
78
78
set -- --xlogdir " $POSTGRES_INITDB_XLOGDIR " " $@ "
79
79
fi
80
80
@@ -121,6 +121,8 @@ docker_verify_minimum_env() {
121
121
This will allow anyone with access to the
122
122
Postgres port to access your database without
123
123
a password, even if POSTGRES_PASSWORD is set.
124
+ See PostgreSQL documentation about "trust":
125
+ https://www.postgresql.org/docs/12/auth-trust.html
124
126
In Docker's default configuration, this is
125
127
effectively any other container on the same
126
128
system.
@@ -207,12 +209,14 @@ docker_setup_env() {
207
209
# append md5 or trust auth to pg_hba.conf based on existence of POSTGRES_DISABLE_PASSWORDS
208
210
pg_setup_hba_conf () {
209
211
local authMethod=' md5'
210
- if [ -n " $POSTGRES_DISABLE_PASSWORDS " ]; then
211
- authMethod=' trust'
212
- fi
213
212
214
213
{
215
214
echo
215
+ if [ -n " $POSTGRES_DISABLE_PASSWORDS " ]; then
216
+ authMethod=' trust'
217
+ echo ' # warning trust is enabled for all connections'
218
+ echo ' # see https://www.postgresql.org/docs/12/auth-trust.html'
219
+ fi
216
220
echo " host all all all $authMethod "
217
221
} >> " $PGDATA /pg_hba.conf"
218
222
}
0 commit comments