diff --git a/docker-compose.e2e.fast.yaml b/docker-compose.e2e.fast.yaml index cb2296990d..5079bf47e5 100644 --- a/docker-compose.e2e.fast.yaml +++ b/docker-compose.e2e.fast.yaml @@ -23,13 +23,13 @@ services: # WebDAV sync server (for sync tests) webdav: - image: hacdias/webdav:latest + image: hacdias/webdav:v5 ports: - '${WEBDAV_PORT:-2345}:${WEBDAV_PORT:-2345}' environment: - PORT=${WEBDAV_PORT:-2345} volumes: - - ./webdav.yaml:/config.yml:ro + - ./webdav.yaml:/etc/webdav/config.yaml:ro - webdav_data:/data healthcheck: test: diff --git a/docker-compose.e2e.yaml b/docker-compose.e2e.yaml index 7196597f75..0e2e5943dc 100644 --- a/docker-compose.e2e.yaml +++ b/docker-compose.e2e.yaml @@ -27,13 +27,13 @@ services: # WebDAV sync server (for sync tests) webdav: - image: hacdias/webdav:latest + image: hacdias/webdav:v5 ports: - '${WEBDAV_PORT:-2345}:${WEBDAV_PORT:-2345}' environment: - PORT=${WEBDAV_PORT:-2345} volumes: - - ./webdav.yaml:/config.yml:ro + - ./webdav.yaml:/etc/webdav/config.yaml:ro - webdav_data:/data healthcheck: test: diff --git a/docker-compose.yaml b/docker-compose.yaml index 2befd75822..b890578dc0 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -75,11 +75,11 @@ services: # WebDAV sync server webdav: - image: hacdias/webdav:latest + image: hacdias/webdav:v5 ports: - '2345:2345' volumes: - - ./webdav.yaml:/config.yml:ro + - ./webdav.yaml:/etc/webdav/config.yaml:ro - webdav_data:/data healthcheck: test: ['CMD', 'wget', '--quiet', '--tries=1', '--spider', 'http://localhost:2345/']