bitnami-containers/bitnami/drupal/9/debian-10/rootfs/app-entrypoint.sh

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