mirror of
https://github.com/bitnami/containers.git
synced 2026-03-12 14:57:54 +08:00
16 lines
251 B
Bash
Executable File
16 lines
251 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
source $BITNAMI_PREFIX/bitnami-utils.sh
|
|
|
|
print_welcome_page
|
|
|
|
if [ ! "$(ls -A $BITNAMI_APP_VOL_PREFIX/conf)" ]; then
|
|
generate_conf_files $BITNAMI_APP_DIR/etc
|
|
fi
|
|
|
|
if [[ "$1" = 'php-fpm' ]]; then
|
|
wait_and_tail_logs &
|
|
fi
|
|
|
|
exec "$@"
|