mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 09:04:52 +01:00
Contrib: Add sample WebDAV server Docker Compose manifest.
This commit is contained in:
parent
4374fd1df1
commit
fd4b25932c
35
contrib/docker/docker-compose.webdav-server.yml
Normal file
35
contrib/docker/docker-compose.webdav-server.yml
Normal file
@ -0,0 +1,35 @@
|
||||
rclone-webdav-server:
|
||||
container_name: rclone-webdav-server
|
||||
|
||||
image: rclone/rclone
|
||||
command:
|
||||
# Tweak here rclone's command line switches:
|
||||
# - "--config"
|
||||
# - "/path/to/mounted/rclone.conf"
|
||||
- "--verbose"
|
||||
- "serve"
|
||||
- "webdav"
|
||||
- "remote:/"
|
||||
# - "--addr"
|
||||
# - "0.0.0.0:8080"
|
||||
- "--read-only"
|
||||
# - "--no-modtime"
|
||||
# - "--no-checksum"
|
||||
|
||||
restart: unless-stopped
|
||||
|
||||
# Use host networking for simplicity.
|
||||
# It also enables server's default listen on 127.0.0.1 to work safely.
|
||||
net: host
|
||||
|
||||
# If you want to use port mapping instead of host networking,
|
||||
# make sure to make rclone listen on 0.0.0.0.
|
||||
#ports:
|
||||
# - "127.0.0.1:8080:8080"
|
||||
|
||||
# Here you have to map your host's rclone.conf directory to
|
||||
# container's /root/.config/rclone/ dir (R/O).
|
||||
# If you have any remote referencing local files, you have to
|
||||
# map them here, too.
|
||||
volumes:
|
||||
- ~/.config/rclone/:/root/.config/rclone/:ro
|
Loading…
Reference in New Issue
Block a user