https://github.com/ionelmc/docker-webdav
NGINX WebDAV container
https://github.com/ionelmc/docker-webdav
container docker nginx webdav
Last synced: 2 months ago
JSON representation
NGINX WebDAV container
- Host: GitHub
- URL: https://github.com/ionelmc/docker-webdav
- Owner: ionelmc
- Created: 2017-06-13T12:01:20.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-10-01T21:48:02.000Z (about 6 years ago)
- Last Synced: 2025-03-25T06:41:38.167Z (9 months ago)
- Topics: container, docker, nginx, webdav
- Language: Shell
- Homepage: https://hub.docker.com/r/ionelmc/webdav/
- Size: 9.77 KB
- Stars: 26
- Watchers: 3
- Forks: 23
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NGINX WebDAV container
Usage:
```bash
docker run --restart always --detach --name webdav --publish 7000:8080 \
--env UID=$UID --volume $PWD:/media ionelmc/webdav
```
Optionally you can add two environment variables to require HTTP basic authentication:
* WEBDAV_USERNAME
* WEBDAV_PASSWORD
Example:
```bash
docker run --restart always --detach --name webdav --publish 7000:8080 \
--env WEBDAV_USERNAME=myuser --env WEBDAV_PASSWORD=mypassword \
--env UID=$UID --volume $PWD:/media ionelmc/webdav
```