From d62774bd14cad68575414ef315da591458f44524 Mon Sep 17 00:00:00 2001 From: Bradley Bickford Date: Wed, 1 Jul 2026 20:18:38 -0400 Subject: [PATCH] nextcloud compose --- nextcloud-compose.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 nextcloud-compose.yml diff --git a/nextcloud-compose.yml b/nextcloud-compose.yml new file mode 100644 index 0000000..762f4b6 --- /dev/null +++ b/nextcloud-compose.yml @@ -0,0 +1,24 @@ +name: nextcloud-aio +services: + nextcloud-aio-mastercontainer: + image: ghcr.io/nextcloud-releases/all-in-one:latest + init: true + restart: always + container_name: nextcloud-aio-mastercontainer + volumes: + - nextcloud_aio_mastercontainer:/mnt/docker-aio-config + - /var/run/docker.sock:/var/run/docker.sock:ro + network_mode: bridge + ports: + - "8080:8080" + environment: + APACHE_PORT: 11000 + APACHE_IP_BINDING: 10.26.48.4 + NEXTCLOUD_DATADIR: /nextcloud_data + NEXTCLOUD_UPLOAD_LIMIT: 16G + NEXTCLOUD_MAX_TIME: 3600 + NEXTCLOUD_MEMORY_LIMIT: 1024M + +volumes: + nextcloud_aio_mastercontainer: + name: nextcloud_aio_mastercontainer