bitnami-containers/bitnami/drupal-nginx/8-php5/rhel-7/rootfs/app-entrypoint.sh

15 lines
284 B
Bash

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