--- services: nc_db: image: mariadb:10.5 container_name: nc_db command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW restart: unless-stopped volumes: - ./volumes/db:/var/lib/mysql environment: - MYSQL_ROOT_PASSWORD=Subatomic-Lapping0-Untagged-Deceptive-Judge - MARIADB_AUTO_UPGRADE=1 - MARIADB_DISABLE_UPGRADE_BACKUP=1 env_file: - mariadb.env - nextcloud.env nc_redis: image: redis:alpine container_name: nc_redis restart: unless-stopped nc_app: image: nextcloud:apache container_name: nc_app restart: unless-stopped volumes: - ./volumes/nextcloud:/var/www/html ports: - "127.0.0.1:28080:80" environment: - MYSQL_HOST=nc_db - REDIS_HOST=nc_redis - TRUSTED_PROXIES=172.16.0.0/12 - OVERWRITEHOST=cloud.smail.koeln - OVERWRITEPROTOCOL=https - OVERWRITEWEBROOT=/ - PHP_UPLOAD_LIMIT=1G env_file: - nextcloud.env depends_on: - nc_db - nc_redis nc_cron: image: nextcloud:apache container_name: nc_cron restart: unless-stopped volumes: - ./volumes/nextcloud:/var/www/html entrypoint: /cron.sh depends_on: - nc_db - nc_redis 54,1 Bot