49 lines
1.5 KiB
YAML
49 lines
1.5 KiB
YAML
# sheldon (cloud.delmar.bzh)
|
|
# https://github.com/nextcloud/all-in-one
|
|
---
|
|
name: nextcloud-aio
|
|
|
|
volumes:
|
|
nextcloud_aio_mastercontainer:
|
|
name: nextcloud_aio_mastercontainer
|
|
|
|
networks:
|
|
nextcloud-aio:
|
|
name: nextcloud-aio
|
|
driver_opts:
|
|
com.docker.network.driver.mtu: 1440
|
|
|
|
services:
|
|
nextcloud-aio-mastercontainer:
|
|
image: ghcr.io/nextcloud-releases/all-in-one:latest
|
|
init: true
|
|
restart: always
|
|
container_name: nextcloud-aio-mastercontainer
|
|
volumes:
|
|
- nextcloud_aio_mastercontainer:/mnt/docker-aio-config
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
# network_mode: bridge
|
|
networks: ["nextcloud-aio"]
|
|
ports:
|
|
- 8080:8080
|
|
# - 8443:8443
|
|
environment:
|
|
AIO_DISABLE_BACKUP_SECTION: false
|
|
APACHE_PORT: 11000
|
|
# APACHE_IP_BINDING: 127.0.0.1
|
|
# APACHE_ADDITIONAL_NETWORK: frontend_net
|
|
BORG_RETENTION_POLICY: --keep-within=7d --keep-weekly=4 --keep-monthly=6
|
|
FULLTEXTSEARCH_JAVA_OPTIONS: "-Xms1024M -Xmx1024M"
|
|
NEXTCLOUD_DATADIR: /mnt/data/ncdata
|
|
NEXTCLOUD_MOUNT: /mnt/data/
|
|
NEXTCLOUD_UPLOAD_LIMIT: 16G
|
|
NEXTCLOUD_MAX_TIME: 3600
|
|
NEXTCLOUD_MEMORY_LIMIT: 512M
|
|
# NEXTCLOUD_STARTUP_APPS: deck twofactor_totp tasks calendar contacts notes deck draw.io forms gestion memories maps mail
|
|
NEXTCLOUD_ADDITIONAL_APKS: ffmpeg imagemagick libmagickcore-6.q16-6-extra nodejs npm
|
|
NEXTCLOUD_ADDITIONAL_PHP_EXTENSIONS: imagick # php-imagick
|
|
NEXTCLOUD_ENABLE_DRI_DEVICE: true
|
|
NEXTCLOUD_KEEP_DISABLED_APPS: false
|
|
TALK_PORT: 3478
|
|
|