Files
containers/bitnami/phpmyadmin/5/debian-10/rootfs/app-entrypoint.sh
2020-03-11 19:25:20 +00:00

16 lines
307 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
nami_initialize apache php phpmyadmin
info "Starting gosu... "
. /post-init.sh
fi
exec tini -- "$@"