bpandey23 commited on
Commit
31c5d60
1 Parent(s): 4304bfb

Update entrypoint.sh

Browse files
Files changed (1) hide show
  1. 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
- su - postgres -c "/usr/lib/postgresql/*/bin/initdb -D /var/lib/postgresql/data"
7
  fi
8
 
9
  # Start the PostgreSQL server
10
- exec su - postgres -c "/usr/lib/postgresql/*/bin/postgres -D /var/lib/postgresql/data"
 
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 postgres /usr/lib/postgresql/*/bin/initdb -D /var/lib/postgresql/data
7
  fi
8
 
9
  # Start the PostgreSQL server
10
+ exec gosu postgres /usr/lib/postgresql/*/bin/postgres -D /var/lib/postgresql/data