https://github.com/senz/u4dav
Lightweight, single-user WebDAV server image
https://github.com/senz/u4dav
caddy server webdav
Last synced: 5 months ago
JSON representation
Lightweight, single-user WebDAV server image
- Host: GitHub
- URL: https://github.com/senz/u4dav
- Owner: senz
- License: mit
- Created: 2025-01-02T18:06:25.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-02-01T09:50:28.000Z (5 months ago)
- Last Synced: 2026-02-01T19:59:59.431Z (5 months ago)
- Topics: caddy, server, webdav
- Language: Dockerfile
- Homepage:
- Size: 123 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# µD4V lightweight WebDAV container image
µD4V (pronounced ooh-dove) is a container image targeting to be a lightweight, single-user WebDAV protocol server.
Intended to be used in homelabs, i.e. for [Paperless-ngx](https://docs.paperless-ngx.com/) or [Calibre](https://calibre-ebook.com/) consumption directories frontend.
## Features
🎯 Core [WebDAV](https://datatracker.ietf.org/doc/html/rfc4918) support. Backed by [golang.org/x/net/webdav](https://pkg.go.dev/golang.org/x/net/webdav) and [caddy-webdav](https://github.com/mholt/caddy-webdav/tree/master)
🛡️ Basic authz and serving powered by [Caddy](https://caddyserver.com)
🪶 Lightweight: image size ~87 MB, process mem consumption ~12 MB
## Usage
`docker pull ghcr.io/senz/u4dav:main`
Container env variables:
| Var name | Description |
|----------|---------------------------|
| USERNAME | User login for basic auth |
| PASSWORD | Plaintext user password |
Mount your data under `/home/caddy/caddy-media` container folder.
Quick local test:
`docker run -e USERNAME=ud4v -e PASSWORD=udaff -p 8080:80 -v ./media:/home/caddy/caddy-media ghcr.io/senz/u4dav:main`