From 064bf2d61e799d1b92ad5ea4478e0cef81f106bd Mon Sep 17 00:00:00 2001 From: death916 Date: Sat, 7 Feb 2026 01:59:10 -0800 Subject: [PATCH] volume --- modules/containers/docker/nextcloud/aio-compose.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/containers/docker/nextcloud/aio-compose.nix b/modules/containers/docker/nextcloud/aio-compose.nix index 48a2650..7a7ba1b 100644 --- a/modules/containers/docker/nextcloud/aio-compose.nix +++ b/modules/containers/docker/nextcloud/aio-compose.nix @@ -25,8 +25,7 @@ in image = "nextcloud/all-in-one:latest"; autoStart = true; ports = [ - "8080:8080" # AIO Interface - "11001:11001" # Apache Port (for Reverse Proxy) + "8080:8080" # AIO Interface ]; environment = { NEXTCLOUD_DATADIR = nextcloudDataPath; @@ -45,6 +44,6 @@ in networking.firewall.allowedTCPPorts = [ 8080 - 11001 + 11000 ]; }