Add Nextcloud Docker configuration and scripts, including Dockerfile, entrypoint, cron, and various config files for caching, SMTP, and object storage

This commit is contained in:
2025-05-18 15:16:24 -07:00
parent 11b6bd0de1
commit 20175a0bb9
15 changed files with 704 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
$CONFIG = array (
'apps_paths' => array (
0 => array (
'path' => OC::$SERVERROOT.'/apps',
'url' => '/apps',
'writable' => false,
),
1 => array (
'path' => OC::$SERVERROOT.'/custom_apps',
'url' => '/custom_apps',
'writable' => true,
),
),
);