docker icon indicating copy to clipboard operation
docker copied to clipboard

Added docker env debug mode

Open archmagece opened this issue 1 year ago • 0 comments

There doesn't seem to be an easy way to handle debug mode when running with docker, so it would be nice to add it.

I just added log.config.php to all config/ directory.

<?php
if (getenv('NEXTCLOUD_DEBUG_MODE') !== false) {
    $CONFIG = array (
        'debug' => true,
      );
}

archmagece avatar Aug 30 '24 07:08 archmagece