Files
containers/bitnami/phpbb/3/rootfs/app-entrypoint.sh
Bitnami Bot 1a03442864 3.2.1-r2 release
phpBB expects an existing database to be configured with.
2017-11-21 14:59:39 +00:00

15 lines
283 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
. /init.sh
nami_initialize apache php mysql-client phpbb
info "Starting phpbb... "
fi
exec tini -- "$@"