Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/toby1991/minio-rclone-webdav-server
A @rclone served WebDAV server with @minio as the s3 storage backend docker example
https://github.com/toby1991/minio-rclone-webdav-server
backup cloud-drive docker minio rclone s3 self-hosted storage webdav
Last synced: 3 months ago
JSON representation
A @rclone served WebDAV server with @minio as the s3 storage backend docker example
- Host: GitHub
- URL: https://github.com/toby1991/minio-rclone-webdav-server
- Owner: toby1991
- License: mit
- Created: 2019-07-23T16:35:26.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-11-28T04:15:27.000Z (about 3 years ago)
- Last Synced: 2024-08-02T15:44:59.986Z (6 months ago)
- Topics: backup, cloud-drive, docker, minio, rclone, s3, self-hosted, storage, webdav
- Language: Dockerfile
- Size: 38.1 KB
- Stars: 28
- Watchers: 0
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# minio-rclone-webdav-server
A @rclone served WebDAV server with @minio as the s3 storage backend docker example
![Docker Cloud Build Status](https://img.shields.io/docker/cloud/build/toby1991/rclone-webdav.svg)
## Run
```bash
git clone https://github.com/toby1991/minio-rclone-webdav-server
cd minio-rclone-webdav-server
docker-compose up -d
```Then use your favorite WebDAV connect:
* Host: `http://127.0.0.1:80`
* Username: `rclone`
* Password: `rclone123`## Env Configuration
> Your Minio Bucket Name
```
BUCKET: rclone
```
> Your Webdav basic-auth username
```
AUTH_USER: rclone
```
> Your Webdav basic-auth password
```
AUTH_PASS: rclone123
```
> Your Webdav access base path, default "/", usually used for Webdav behind nginx/traefik
```
BASE_URL: /
```
> Your Rclone WebGUI username
```
RC_USER: gui
```
> Your Rclone WebGUI password
```
RC_PASS: gui123
```## Dashboard
* Host: `http://127.0.0.1:5572`
* Username: `gui`
* Password: `gui123`## Fuse
add `--cap-add SYS_ADMIN --device /dev/fuse --security-opt apparmor:unconfine` when running.