Update entrypoint.sh
Browse files- entrypoint.sh +2 -2
entrypoint.sh
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
# Check if the PostgreSQL data directory is empty
|
4 |
if [ -z "$(ls -A /var/lib/postgresql/data)" ]; then
|
5 |
echo "Initializing PostgreSQL database..."
|
6 |
-
gosu
|
7 |
fi
|
8 |
|
9 |
# Start the PostgreSQL server
|
10 |
-
exec gosu
|
|
|
3 |
# Check if the PostgreSQL data directory is empty
|
4 |
if [ -z "$(ls -A /var/lib/postgresql/data)" ]; then
|
5 |
echo "Initializing PostgreSQL database..."
|
6 |
+
gosu foobar /usr/lib/postgresql/*/bin/initdb -D /var/lib/postgresql/data
|
7 |
fi
|
8 |
|
9 |
# Start the PostgreSQL server
|
10 |
+
exec gosu foobar /usr/lib/postgresql/*/bin/postgres -D /var/lib/postgresql/data
|