使用 Rclone 将阿里云盘 WebDAV 挂载到本机

5,499 阅读1分钟
docker run -d --name rclone-mount \
    --restart=unless-stopped \
    --cap-add SYS_ADMIN \
    --device /dev/fuse \
    --security-opt apparmor:unconfined \
    -e RemotePath="mediaefs:" \
    -e MountCommands="--allow-other --allow-non-empty" \
    -v /path/to/config:/config \
    -v /host/mount/point:/mnt/mediaefs:shared \
    mumiehub/rclone-mount
    

PS:在写了在写了