# Nextcloud All-in-One services: nextcloud-aio-mastercontainer: image: nextcloud/all-in-one:latest container_name: nextcloud-aio-mastercontainer restart: unless-stopped init: true ports: - "11000:8080" volumes: - ./nextcloud_aio_mastercontainer:/mnt/docker-aio-config - ./data:/mnt/data environment: - PUID=1000 - PGID=1000 - TZ=Europe/Prague - APACHE_PORT=11000 - NEXTCLOUD_DATADIR=/mnt/data - NEXTCLOUD_ADDITIONAL_APKS=imagemagick - NEXTCLOUD_TRUSTED_CACERTS_DIR=/usr/local/share/ca-certificates - NEXTCLOUD_UPLOAD_LIMIT=10G networks: - nextcloud_net healthcheck: test: ["CMD", "curl", "-f", "http://localhost:8080"] interval: 60s timeout: 10s retries: 5 start_period: 120s logging: driver: json-file options: max-size: "10m" max-file: "3" networks: nextcloud_net: name: nextcloud_default driver: bridge