From aac9a1e2f54bf6064c371a819d274c12e3bd4554 Mon Sep 17 00:00:00 2001 From: Jannik Stehle Date: Fri, 31 Jul 2026 11:16:12 +0200 Subject: [PATCH] feat: add apps.yaml config Add a config for the maps map. Its purpose is not to change anything but to guide and show users how to configure web apps. Now that the apps.yaml file is mounted, it can easily be extended by more config options --- config/opencloud/apps.yaml | 3 +++ docker-compose.yml | 1 + 2 files changed, 4 insertions(+) create mode 100644 config/opencloud/apps.yaml diff --git a/config/opencloud/apps.yaml b/config/opencloud/apps.yaml new file mode 100644 index 0000000..c4159a5 --- /dev/null +++ b/config/opencloud/apps.yaml @@ -0,0 +1,3 @@ +maps: + config: + folderViewEnabled: false diff --git a/docker-compose.yml b/docker-compose.yml index 0a353a0..36e643a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -58,6 +58,7 @@ services: OC_DEFAULT_LANGUAGE: ${DEFAULT_LANGUAGE} volumes: - ./config/opencloud/csp.yaml:/etc/opencloud/csp.yaml + - ./config/opencloud/apps.yaml:/etc/opencloud/apps.yaml - ./config/opencloud/banned-password-list.txt:/etc/opencloud/banned-password-list.txt # configure the .env file to use own paths instead of docker internal volumes - ${OC_CONFIG_DIR:-opencloud-config}:/etc/opencloud