mirror of
https://github.com/bitnami/containers.git
synced 2026-03-05 16:17:21 +08:00
14 lines
267 B
Bash
Executable File
14 lines
267 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
|
|
nami_initialize apache php phpmyadmin
|
|
info "Starting phpmyadmin... "
|
|
fi
|
|
|
|
exec tini -- "$@"
|