You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to enable/disable xdebug extension from environment variable which is configured in .env file. I put the following statement to the docker-compose.yml file but it did not work out by some reason.
PHP_XDEBUG: ${PHP_XDEBUG}
I guess this condition is evaluated to true when the variable holds an empty string.
We probably need to get rid of this env var completely, the default mode off should have close to 0 performance impact and in any case we still have PHP_EXTENSIONS_DISABLE
I would like to enable/disable xdebug extension from environment variable which is configured in .env file. I put the following statement to the docker-compose.yml file but it did not work out by some reason.
I guess this condition is evaluated to true when the variable holds an empty string.
php/8/templates/docker-php-ext-xdebug.ini.tmpl
Line 1 in c5b31a0
I am not familiar with go template syntax. Can it check more explicitly for emptiness of
PHP_XDEBUG
variable?The text was updated successfully, but these errors were encountered: