super-productivity/docker-compose.webdav-e2e.yaml
2025-07-18 12:11:05 +02:00

16 lines
403 B
YAML

services:
webdav:
image: hacdias/webdav:latest
ports:
- '2345:2345'
volumes:
- ./webdav.yaml:/config.yml:ro
- ./e2e-webdav-data:/data
environment:
- WEBDAV_CONFIG=/config.yml
healthcheck:
test: ['CMD', 'wget', '--quiet', '--tries=1', '--spider', 'http://localhost:2345/']
interval: 10s
timeout: 5s
retries: 3
start_period: 10s