1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2025-12-21 22:01:31 +00:00
Files
mailcow-dockerized/data/Dockerfiles/nginx/docker-entrypoint.sh
2025-05-19 09:45:00 +02:00

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;"