bitnami-postgresql-entrypoint-container.sh 579 Bytes
#!/bin/bash

# shellcheck disable=SC1091

set -o errexit
set -o nounset
set -o pipefail
# set -o xtrace # Uncomment this line for debugging purposes

# Load libraries
. /opt/bitnami/scripts/libbitnami.sh
. /opt/bitnami/scripts/libpostgresql.sh

# Load MySQL environment variables
. /opt/bitnami/scripts/postgresql-env.sh

print_welcome_page

set -x
id
cat /etc/passwd
ls -la /bitnami/postgresql /bitnami/postgresql/data/ /opt/bitnami/postgresql/
chown -R $POSTGRESQL_DAEMON_USER:$POSTGRESQL_DAEMON_GROUP /opt/bitnami/postgresql/tmp /opt/bitnami/postgresql/logs
exec bash -x "$@"