mirror of
https://github.com/RWejlgaard/pez-infra.git
synced 2026-05-06 04:14:43 +00:00
- add missing --- to 13 more yml files - fix comment indentation in prometheus.yml
33 lines
956 B
YAML
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:
|