mirror of
https://github.com/nextcloud/docker.git
synced 2025-03-14 18:35:08 +01:00
README: migration: mention custom_apps config
Signed-off-by: NeroBurner <pyro4hell@gmail.com>
This commit is contained in:
parent
76da6bc25d
commit
901186a60b
1 changed files with 16 additions and 1 deletions
17
README.md
17
README.md
|
@ -378,7 +378,22 @@ You're already using Nextcloud and want to switch to docker? Great! Here are som
|
|||
- "writable" => true,
|
||||
- ),
|
||||
```
|
||||
3. Make sure your data directory is set to /var/www/html/data
|
||||
3. Make sure to have the `apps` directory non writable and the `custom_apps` directory writable
|
||||
```php
|
||||
'apps_paths' => array (
|
||||
0 => array (
|
||||
'path' => '/var/www/html/apps',
|
||||
'url' => '/apps',
|
||||
'writable' => false,
|
||||
),
|
||||
1 => array (
|
||||
'path' => '/var/www/html/custom_apps',
|
||||
'url' => '/custom_apps',
|
||||
'writable' => true,
|
||||
),
|
||||
),
|
||||
```
|
||||
4. Make sure your data directory is set to /var/www/html/data
|
||||
```php
|
||||
'datadirectory' => '/var/www/html/data',
|
||||
```
|
||||
|
|
Loading…
Add table
Reference in a new issue