Add in cloudflare ddns and restructure repo

This commit is contained in:
James Thompson
2026-05-19 08:30:25 +00:00
parent c546fab5e1
commit 6fb3fc65e4
35 changed files with 132 additions and 131 deletions

View File

@@ -0,0 +1,4 @@
# nextcloud/.env
# Copy to .env and fill in real values. NEVER commit .env.
AIO_PORT=8081

View File

@@ -0,0 +1,27 @@
services:
nextcloud-aio-mastercontainer:
image: ghcr.io/nextcloud-releases/all-in-one:latest
container_name: nextcloud-aio-mastercontainer
restart: always
ports:
- "${AIO_PORT}:8080"
volumes:
- nextcloud_aio_mastercontainer:/mnt/docker-aio-config
- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
- APACHE_PORT=11000
- NEXTCLOUD_DATADIR=${STORAGE_PATH}/nextcloud
- APACHE_ADDITIONAL_NETWORK=web
networks:
- nextcloud-aio
- web
volumes:
nextcloud_aio_mastercontainer:
networks:
nextcloud-aio:
web:
external: true