mirror of
https://github.com/CoolnsX/selfhost.git
synced 2025-12-20 07:15:17 +05:30
32 lines
846 B
YAML
32 lines
846 B
YAML
services:
|
|
nextcloud:
|
|
image: nextcloud/all-in-one:latest-arm64
|
|
restart: unless-stopped
|
|
container_name: nextcloud-aio-mastercontainer
|
|
ports:
|
|
- "8080:8080"
|
|
environment:
|
|
- AIO_DISABLE_BACKUP_SECTION=true
|
|
- APACHE_PORT=11000
|
|
- APACHE_IP_BINDING=0.0.0.0
|
|
- NEXTCLOUD_MOUNT=/media/vault/nextcloud/
|
|
- NEXTCLOUD_ENABLE_DRI_DEVICE=true
|
|
- NEXTCLOUD_UPLOAD_LIMIT=100G
|
|
- NEXTCLOUD_MAX_TIME=3600
|
|
- NEXTCLOUD_MEMORY_LIMIT=1024M
|
|
- SKIP_DOMAIN_VALIDATION=true
|
|
- NEXTCLOUD_KEEP_DISABLED_APPS=true
|
|
volumes:
|
|
- nextcloud_aio_mastercontainer:/mnt/docker-aio-config
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
networks:
|
|
- coolans
|
|
|
|
volumes:
|
|
nextcloud_aio_mastercontainer:
|
|
name: nextcloud_aio_mastercontainer
|
|
|
|
networks:
|
|
coolans:
|
|
name: coolans
|