Update entrypoint.sh

Fixed Syntax after last change
This commit is contained in:
BlockyBlockling
2024-11-04 13:07:57 +01:00
committed by GitHub
parent 7514206186
commit 968239beb3

View File

@@ -52,7 +52,7 @@ crond -L /var/log/crond -l 5
export SUPERVISORD_CADDY=false
## disable caddy if SKIP_CADDY is set
if [[ "$SKIP_CADDY:-" == "true" ]];
if [[ "${SKIP_CADDY:-}" == "true" ]]; then
echo "Starting PHP-FPM only"
else
echo "Starting PHP-FPM and Caddy"