version: "3.3" services: superproductivity: image: johannesjo/super-productivity:latest container_name: superproductivity ports: - "8080:80" environment: - WEBDAV_BACKEND=http://webdav:80 depends_on: - webdav restart: unless-stopped webdav: image: hacdias/webdav:latest container_name: sp-webdav ports: - "9090:80" volumes: - /docker/appdata/superprod/webdav_data:/data restart: unless-stopped