Files
containers/bitnami/phpmyadmin/4/rootfs/app-entrypoint.sh
2017-02-20 16:10:28 +05:30

14 lines
285 B
Bash
Executable File

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