From 271b4d1a50535e1f0930119cda061f5de538bf65 Mon Sep 17 00:00:00 2001 From: dado Date: Mon, 2 Jun 2025 16:58:47 +0200 Subject: [PATCH] added new java env variable --- nextcloud/docker-compose.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/nextcloud/docker-compose.yml b/nextcloud/docker-compose.yml index 868ba0c..c2f1b91 100644 --- a/nextcloud/docker-compose.yml +++ b/nextcloud/docker-compose.yml @@ -23,6 +23,7 @@ services: - AIO_DISABLE_BACKUP_SECTION=true - APACHE_PORT=11000 - APACHE_IP_BINDING=127.0.0.1 + - FULLTEXTSEARCH_JAVA_OPTIONS="-Xms1024M -Xmx1024M" # Allows to adjust the fulltextsearch java options. See https://github.com/nextcloud/all-in-one#how-to-adjust-the-fulltextsearch-java-options - SKIP_DOMAIN_VALIDATION=true # BORG_RETENTION_POLICY: --keep-within=7d --keep-weekly=4 --keep-monthly=6 # Allows to adjust borgs retention policy. See https://github.com/nextcloud/all-in-one#how-to-adjust-borgs-retention-policy - COLLABORA_SECCOMP_DISABLED=false @@ -31,13 +32,14 @@ services: - NEXTCLOUD_UPLOAD_LIMIT=10G - NEXTCLOUD_MAX_TIME=3600 - NEXTCLOUD_MEMORY_LIMIT=1024M - # NEXTCLOUD_TRUSTED_CACERTS_DIR: /path/to/my/cacerts # CA certificates in this directory will be trusted by the OS of the nexcloud container (Useful e.g. for LDAPS) See See https://github.com/nextcloud/all-in-one#how-to-trust-user-defined-certification-authorities-ca - - NEXTCLOUD_STARTUP_APPS=deck twofactor_totp calendar contacts notes bookmarks + - NEXTCLOUD_STARTUP_APPS=deck twofactor_totp calendar contacts notes - NEXTCLOUD_ADDITIONAL_APKS=imagemagick - NEXTCLOUD_ADDITIONAL_PHP_EXTENSIONS=imagick - TALK_PORT=3480 - - WATCHTOWER_DOCKER_SOCKET_PATH=/var/run/docker.sock # Needs to be specified if the docker socket on the host is not located in the default '/var/run/docker.sock'. Otherwise mastercontainer updates will fail. For macos it needs to be '/var/run/docker.sock' + - WATCHTOWER_DOCKER_SOCKET_PATH=/var/run/docker.sock volumes: nextcloud_aio_mastercontainer: - name: nextcloud_aio_mastercontainer # This line is not allowed to be changed as otherwise the built-in backup solution will not work \ No newline at end of file + name: nextcloud_aio_mastercontainer + +# https://github.com/nextcloud/all-in-one/blob/main/compose.yaml \ No newline at end of file