From 4153c692fdfeba54ee486c68d29f883412044224 Mon Sep 17 00:00:00 2001 From: "Simon L." Date: Wed, 1 Oct 2025 15:09:14 +0200 Subject: [PATCH] add minio storage to backup volumes and readme update Signed-off-by: Simon L. --- community-containers/minio/minio.json | 3 +++ community-containers/minio/readme.md | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/community-containers/minio/minio.json b/community-containers/minio/minio.json index ae1925bd..2403f213 100644 --- a/community-containers/minio/minio.json +++ b/community-containers/minio/minio.json @@ -21,6 +21,9 @@ "writeable": true } ], + "backup_volumes": [ + "nextcloud_aio_minio" + ], "nextcloud_exec_commands": [ "php /var/www/html/occ config:system:set objectstore class --value 'OC\\Files\\ObjectStore\\S3'", "php /var/www/html/occ config:system:set objectstore arguments autocreate --value true --type bool", diff --git a/community-containers/minio/readme.md b/community-containers/minio/readme.md index 4f9391bd..be41d5bd 100644 --- a/community-containers/minio/readme.md +++ b/community-containers/minio/readme.md @@ -1,6 +1,12 @@ ## Minio This container bundles minio s3 storage and auto-configures it for you. +>[!WARNING] +> Enabling this container will remove access to all the files formerly written to the data directory. +> So only enable this on a clean instance directly after installing AIO. +> All additional users that are added via Nextcloud afterwards are going to work correctly. +> Also, after enabling and using it, make sure to not disable the container as you cannot migrate from s3 to local storage anymore and s3 is a critical part of your infrastructure from then on. + ### Notes - The data of Minio will be automatically included in AIOs backup solution! - See https://github.com/nextcloud/all-in-one/tree/main/community-containers#community-containers how to add it to the AIO stack