bitnami-containers/bitnami/wordpress/5/ol-7/rootfs/app-entrypoint.sh

17 lines
349 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
. /apache-init.sh
. /wordpress-init.sh
nami_initialize apache php mysql-client wordpress
info "Starting wordpress... "
. /post-init.sh
fi
exec tini -- "$@"