Files
containers/bitnami/wordpress/4-php5/rhel-7/rootfs/app-entrypoint.sh
2018-05-25 16:40:37 +00:00

15 lines
288 B
Bash
Executable File

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