1
0
mirror of https://github.com/docker-library/postgres.git synced 2025-07-28 10:42:06 +03:00

Add more minor tweaks to generate-stackbrew-library.sh and update.sh

This commit is contained in:
Tianon Gravi
2014-08-01 15:48:37 -06:00
parent f627096ef6
commit 4540606ea2
3 changed files with 21 additions and 2 deletions

18
docker-entrypoint.sh Executable file
View File

@ -0,0 +1,18 @@
#!/bin/bash
set -e
if [ "$1" = 'postgres' ]; then
chown -R postgres "$PGDATA"
if [ -z "$(ls -A "$PGDATA")" ]; then
gosu postgres initdb
sed -ri "s/^#(listen_addresses\s*=\s*)\S+/\1'*'/" "$PGDATA"/postgresql.conf
{ echo; echo 'host all all 0.0.0.0/0 trust'; } >> "$PGDATA"/pg_hba.conf
fi
exec gosu postgres "$@"
fi
exec "$@"