From e90df5a46bc83794d145681d0fd256d8173bacbe Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Mon, 16 Dec 2024 12:14:36 +0100 Subject: [PATCH] fix: debug mode --- docker/production/entrypoint.d/99-debug-mode.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/production/entrypoint.d/99-debug-mode.sh b/docker/production/entrypoint.d/99-debug-mode.sh index d1c8e5aa8..b2900808d 100644 --- a/docker/production/entrypoint.d/99-debug-mode.sh +++ b/docker/production/entrypoint.d/99-debug-mode.sh @@ -1,5 +1,5 @@ # Debug mode -if [ "$DEBUG" = "true" ]; then +if [ "$APP_DEBUG" = "true" ]; then echo "Debug mode is enabled" echo "Installing development dependencies..." composer install --dev --no-scripts