From 1a9a439ed73cc19f995862d0f7e56d7e199d77b0 Mon Sep 17 00:00:00 2001 From: Peter Smit Date: Thu, 27 Mar 2025 18:41:11 +0100 Subject: [PATCH] damn nextcloud --- nextcloud/docker-compose.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/nextcloud/docker-compose.yml b/nextcloud/docker-compose.yml index c6a0a0e..43e5c57 100644 --- a/nextcloud/docker-compose.yml +++ b/nextcloud/docker-compose.yml @@ -1,13 +1,17 @@ services: nextcloud-aio-mastercontainer: - image: nextcloud/all-in-one:v10.9.0 + image: nextcloud/all-in-one:latest init: true restart: always container_name: nextcloud-aio-mastercontainer # This line is not allowed to be changed as otherwise AIO will not work correctly volumes: - - ${NEXTCLOUD_DATA_DIR}:/mnt/docker-aio-config # This line is not allowed to be changed as otherwise the built-in backup solution will not work + - nextcloud_aio_mastercontainer:/mnt/docker-aio-config # This line is not allowed to be changed as otherwise the built-in backup solution will not work - /var/run/docker.sock:/var/run/docker.sock:ro network_mode: bridge # add to the same network as docker run would do ports: - 8081:8080 - - 8443:8443 \ No newline at end of file + - 8443:8443 + +volumes: # If you want to store the data on a different drive, see https://github.com/nextcloud/all-in-one#how-to-store-the-filesinstallation-on-a-separate-drive + nextcloud_aio_mastercontainer: + name: nextcloud_aio_mastercontainer \ No newline at end of file