We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 123aedc commit 77c9ac3Copy full SHA for 77c9ac3
9.6/docker-entrypoint.sh
@@ -85,8 +85,9 @@ if [ "$1" = 'postgres' ]; then
85
pass=
86
authMethod=trust
87
fi
88
-
89
- { echo; echo "host all all all $authMethod"; } | tee -a "$PGDATA/pg_hba.conf" > /dev/null
+
+ echo "" >> $PGDATA/pg_hba.conf
90
+ echo "host all all all $authMethod" >> $PGDATA/pg_hba.conf
91
92
# internal start of server in order to allow set-up using psql-client
93
# does not listen on external TCP/IP and waits until start finishes
0 commit comments