From f4abd4d7587944632c1026dc453893219b6f5296 Mon Sep 17 00:00:00 2001 From: Rimas Kudelis Date: Thu, 7 Nov 2024 12:58:38 +0200 Subject: [PATCH] Remove `APP_DEBUG` from `compose.override.dist.yml` This env variable can be set via `.env` and `.env.*`, and is already being set that way. Specifying it here not only makes it redundant, but also disables the logic of this value being dynamically assigned depending on `APP_ENV` --- compose.override.dist.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/compose.override.dist.yml b/compose.override.dist.yml index 14c16651bd..b95849ff6a 100644 --- a/compose.override.dist.yml +++ b/compose.override.dist.yml @@ -7,7 +7,6 @@ services: condition: service_healthy environment: # You can move these environment variables to your .env.local file - APP_DEBUG: 0 APP_ENV: ${ENV:-prod} APP_SECRET: EDITME DATABASE_URL: "mysql://root@mysql/sylius_%kernel.environment%"