pez-infra/ansible/services/nextcloud-aio/docker-compose.yml
Rasmus Wejlgaard dc198eea81 fix more yaml document-start and comment indentation
- add missing --- to 13 more yml files
- fix comment indentation in prometheus.yml
2026-03-28 13:15:46 +00:00

33 lines
956 B
YAML

---
# Nextcloud AIO - All-in-one Nextcloud deployment
# Host: london-b (100.84.65.101)
# Data: Docker volume (nextcloud_aio_mastercontainer)
# Access: https://cloud.pez.sh (via Caddy reverse proxy on helsinki-a)
#
# Note: Nextcloud AIO manages its own sub-containers (apache, database,
# redis, etc.) via the mastercontainer. This compose file only defines
# the mastercontainer itself.
services:
nextcloud-aio-mastercontainer:
image: ghcr.io/nextcloud-releases/all-in-one:latest
container_name: nextcloud-aio-mastercontainer
restart: always
ports:
- "8080:8080"
environment:
SKIP_DOMAIN_VALIDATION: "false"
APACHE_PORT: 11000
APACHE_IP_BINDING: "0.0.0.0"
volumes:
- nextcloud_aio_mastercontainer:/mnt/docker-aio-config
- /var/run/docker.sock:/var/run/docker.sock:ro
networks:
- nextcloud-aio
networks:
nextcloud-aio:
driver: bridge
volumes:
nextcloud_aio_mastercontainer: