An open API service indexing awesome lists of open source software.

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

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
```