From acc98a37cf373786b60c23984f9d0fc2dd43d999 Mon Sep 17 00:00:00 2001 From: Marc Blatter Date: Tue, 24 Mar 2026 20:04:18 +0000 Subject: [PATCH] read-only file system --- compose-cloud.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/compose-cloud.yml b/compose-cloud.yml index 0c5f437..310ab95 100644 --- a/compose-cloud.yml +++ b/compose-cloud.yml @@ -21,9 +21,9 @@ services: ports: - "8085:80" volumes: - - /opt/nextcloud/config:/config - - /opt/nextcloud/data:/data - - /opt/homepage/config:/mnt/homepage/config + - /home/marc/nextcloud/config:/config + - /home/marc/nextcloud/data:/data + - /home/marc/homepage/config:/mnt/homepage/config restart: unless-stopped healthcheck: test: ["CMD-SHELL", "curl -f http://localhost:80 || exit 1"] @@ -41,10 +41,10 @@ services: - MARIADB_ROOT_PASSWORD=Str0ng-Nextcloud-DB-Root-Pass - TZ=Europe/Zurich volumes: - - /opt/nextcloud/db:/var/lib/mysql + - /home/marc/nextcloud/db:/var/lib/mysql restart: unless-stopped healthcheck: - test: ["CMD-SHELL", "mysqladmin ping -h localhost -u nextcloud -pStr0ng-Nextcloud-DB-User-Pass || exit 1"] + test: ["CMD-SHELL", "mysqladmin ping -h localhost -u nextcloud -p Str0ng-Nextcloud-DB-User-Pass || exit 1"] interval: 30s timeout: 5s retries: 3