nextcloud

This commit is contained in:
Atridad Lahiji 2024-12-18 11:44:52 -06:00
parent 70ee1c0639
commit 60a1e7d39f
Signed by: atridad
SSH key fingerprint: SHA256:LGomp8Opq0jz+7kbwNcdfTcuaLRb5Nh0k5AchDDb438

18
compose/nextcloud.yml Normal file
View file

@ -0,0 +1,18 @@
services:
nextcloud-aio-mastercontainer:
image: nextcloud/all-in-one:latest
init: true
restart: always
container_name: nextcloud-aio-mastercontainer # This is required and cannot be changed
volumes:
- nextcloud_aio_mastercontainer:/mnt/docker-aio-config # This is required for backups
- /var/run/docker.sock:/var/run/docker.sock:ro # Required for container management
network_mode: bridge
environment:
APACHE_PORT: ${APACHE_PORT}
ports:
- ${APP_PORT}:8080
- ${APP_PORT_HTTPS}:443
volumes:
nextcloud_aio_mastercontainer:
name: nextcloud_aio_mastercontainer