mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2025-12-19 04:41:29 +00:00
21 lines
404 B
Bash
Executable File
21 lines
404 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Run hooks
|
|
for file in /hooks/*; do
|
|
if [ -x "${file}" ]; then
|
|
echo "Running hook ${file}"
|
|
"${file}"
|
|
fi
|
|
done
|
|
|
|
python3 -u /bootstrap/main.py
|
|
BOOTSTRAP_EXIT_CODE=$?
|
|
|
|
if [ $BOOTSTRAP_EXIT_CODE -ne 0 ]; then
|
|
echo "Bootstrap failed with exit code $BOOTSTRAP_EXIT_CODE. Not starting PHP-FPM."
|
|
exit $BOOTSTRAP_EXIT_CODE
|
|
fi
|
|
|
|
echo "Bootstrap succeeded. Starting PHP-FPM..."
|
|
exec "$@"
|