Files
containers/bitnami/postgresql/10/rootfs/app-entrypoint.sh
Bitnami Bot 47cab0f8fb 10.1.0-r0 release
Update PostgreSQL to 10.1
2017-11-21 18:13:22 +00:00

14 lines
256 B
Bash
Executable File

#!/bin/bash -e
. /opt/bitnami/base/functions
. /opt/bitnami/base/helpers
print_welcome_page
if [[ "$1" == "nami" && "$2" == "start" ]] || [[ "$1" == "/init.sh" ]]; then
nami_initialize postgresql
info "Starting postgresql... "
fi
exec tini -- "$@"