Archived
1
0
Fork 0
This repository has been archived on 2024-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
dockerfiles/tinywebdav/README.md
Joerg Elfring 9e66475149 init
2017-12-09 16:46:17 +01:00

27 lines
730 B
Markdown

# tiny webdav server
Builds an image to run a small webDav server.
HINT: This is not an official image. Builds might not happen regularly.
The only authentication mechanism is a token, containing the only accessible
directory on the server.
| ENV | Default | Description
|--------------|--------------|------------------------------------------------------------
| TOKEN | s3cret | Name of the only accessible directory
It is based on Alpine Linux http://alpinelinux.org/.
## Usage
For example this way:
```console
$ docker run -d \
-e TOKEN="SuperS3cret" \
-v /etc/localtime:/etc/localtime:ro \
-p 80:80 \
--restart=always \
elfrinjo/tinywebdav
```