mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
16 lines
403 B
YAML
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
|