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: 7 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 (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-11-28T04:15:27.000Z (almost 4 years ago)
- Last Synced: 2024-11-05T19:43:51.370Z (12 months ago)
- Topics: backup, cloud-drive, docker, minio, rclone, s3, self-hosted, storage, webdav
- Language: Dockerfile
- Size: 38.1 KB
- Stars: 27
- 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

## 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.