https://github.com/idelsink/webdav-docker
A WebDAV docker image
https://github.com/idelsink/webdav-docker
docker docker-container webdav
Last synced: about 1 year ago
JSON representation
A WebDAV docker image
- Host: GitHub
- URL: https://github.com/idelsink/webdav-docker
- Owner: idelsink
- License: mit
- Created: 2016-12-28T21:28:45.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-01-26T01:06:24.000Z (over 7 years ago)
- Last Synced: 2025-03-31T12:19:34.486Z (over 1 year ago)
- Topics: docker, docker-container, webdav
- Language: Shell
- Homepage: https://hub.docker.com/r/idelsink/webdav/
- Size: 27.3 KB
- Stars: 17
- Watchers: 4
- Forks: 8
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WebDAV Docker
[](https://microbadger.com/images/idelsink/webdav)
[](https://microbadger.com/images/idelsink/webdav)
[]()
[]()
[]()
[]()
A WebDAV docker image.
## Usage
```sh
docker run --name=webdav -d -v :/webdav -p 80:80 idelsink/webdav
```
If you want to secure it with a username and password, pass the `USERNAME` and
`PASSWORD` environment variable.
For example:
```sh
docker run --name=webdav -d -e USERNAME=user -e PASSWORD=pass -v :/webdav -p 80:80 idelsink/webdav
```
Or using an environment variable file.
For example:
```sh
$ cat env_file
USERNAME=user
PASSWORD=pass
```
```sh
docker run --name=webdav -d --env-file=./env_file -v :/webdav -p 80:80 idelsink/webdav
```
## License
> You can check out the full license [here](./LICENSE)
This project is licensed under the terms of the **MIT** license.