mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2025-12-21 22:01:31 +00:00
13 lines
289 B
Bash
Executable File
13 lines
289 B
Bash
Executable File
#!/bin/sh
|
|
|
|
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 Nginx."
|
|
exit $BOOTSTRAP_EXIT_CODE
|
|
fi
|
|
|
|
echo "Bootstrap succeeded. Starting Nginx..."
|
|
nginx -g "daemon off;"
|