diff --git a/compose.mariadb.yml b/compose.mariadb.yml index bb4b47d..956e424 100644 --- a/compose.mariadb.yml +++ b/compose.mariadb.yml @@ -31,5 +31,10 @@ services: backupbot.backup.pre-hook: 'mkdir -p /tmp/backup/ && mysqldump --single-transaction -u root -p"$$(cat /run/secrets/db_root_password)" nextcloud > /tmp/backup/backup.sql' backupbot.backup.post-hook: "rm -rf /tmp/backup" backupbot.backup.path: "/tmp/backup/" +configs: + my_tune: + name: ${STACK_NAME}_my_cnf_${MY_CNF_VERSION} + file: my-tune.cnf + volumes: mariadb: diff --git a/compose.yml b/compose.yml index 9148ded..2f8676d 100644 --- a/compose.yml +++ b/compose.yml @@ -69,7 +69,7 @@ services: failure_action: rollback order: start-first labels: - - "coop-cloud.${STACK_NAME}.version=1.0.0+23.0.3-fpm" + - "coop-cloud.${STACK_NAME}.version=2.0.0+23.0.3-fpm" - "backupbot.backup=true" - "backupbot.backup.path=/var/www/html/config/,/var/www/html/data/,/var/www/html/custom_apps/" @@ -119,9 +119,6 @@ configs: fpm_tune: name: ${STACK_NAME}_fpm_tune_${FPM_TUNE_VERSION} file: fpm-tune.ini - my_tune: - name: ${STACK_NAME}_my_cnf_${MY_CNF_VERSION} - file: my-tune.cnf networks: proxy: diff --git a/releases/2.0.0+23.0.3-fpm b/releases/2.0.0+23.0.3-fpm index 7f9f061..3dead5b 100644 --- a/releases/2.0.0+23.0.3-fpm +++ b/releases/2.0.0+23.0.3-fpm @@ -1,5 +1,4 @@ -The 2.0.0 release moves the database service to a seperate override.yml file to support different database types (mariadb / postgres). -Please add the following snippet to your config .env to ensure mariadb is used: +2.0.0 introduces a minor nextcloud update to 23.0.3 and moves the database service to a seperate override.yml file to support different database types (mariadb / postgres). This might break your installation. Please add the following snippet to your config .env to ensure the right db is used: ``` COMPOSE_FILE="compose.yml"