--- # docker-compose file for owncloud server # DOCKER_HOST=dkhost:2376 docker stack deploy -c docker-compose-prod.yml owncloud version: '3' services: owncloud: image: dkregistry.xai-corp.net:5000/xaicorp/nextcloud:latest ports: - 8083:80 # - 9083:9000 volumes: - /opt/shared/nextcloud/data:/var/www/html/data - /opt/shared/nextcloud/config:/var/www/html/config - /opt/shared/nextcloud/apps:/var/www/html/custom_apps deploy: mode: replicated replicas: 1 restart_policy: condition: any delay: "1s" max_attempts: 5 resources: limits: cpus: '1' memory: 512M collabora: image: collabora/code ports: - 9980:9980 environment: domain: office\\.xai-corp\\.net username: admin password: ah8031qhnbc server_name: office.xai-corp.net deploy: mode: replicated replicas: 1 restart_policy: condition: any delay: "1s" max_attempts: 5 resources: limits: cpus: '1' memory: 512M