23 lines
712 B
YAML
23 lines
712 B
YAML
---
|
|
|
|
version: "3.8"
|
|
|
|
services:
|
|
nextcloud-fpm:
|
|
environment:
|
|
&nextcloud-configuration
|
|
NC_trashbin_retention_obligation: ${NC_trashbin_retention_obligation:-auto, 30}
|
|
NC_force_language: ${NC_force_language:-fr}
|
|
NC_default_locale: ${NC_default_locale:-fr_FR}
|
|
NC_force_locale: ${NC_force_locale:-fr_FR}
|
|
NC_default_language: ${NC_default_language:-fr}
|
|
NC_default_phone_region: ${NC_default_phone_region:-FR}
|
|
NC_defaultapp: ${NC_defaultapp:-files}
|
|
NC_preview_max_x: ${NC_preview_max_x:-2048}
|
|
NC_preview_max_y: ${NC_preview_max_y:-2048}
|
|
NC_jpeg_quality: ${NC_jpeg_quality:-60}
|
|
|
|
nextcloud-cron:
|
|
environment:
|
|
<<: *nextcloud-configuration
|