docker
docker copied to clipboard
Added docker env debug mode
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,
);
}