Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 1.75 KB

README.md

File metadata and controls

41 lines (26 loc) · 1.75 KB

This project was forked from jgeusebroek

Docker WebDAV image

A tiny image running gliderlabs/docker-alpine Linux and Lighttpd.

Usage

docker run --restart=always -d \
	-p 0.0.0.0:80:80 \
	--hostname=webdav \
	--name=webdav \
	-v /<host_directory_to_share>:/webdav \
	softbrix/webdav

By default the WebDAV server is password protected with user webdav and password vadbew which obviously isn't really secure. This can easily be overwritten, by providing a new environment variable for the container when it starts.

-e HTPASSWD=<username>:<hashed_password>

You could use an online htpasswd generator like https://www.transip.nl/htpasswd/ to create the password hashes when you don't have a machine with the htpasswd package. (Hint: The package is apache2-utils)

You can also provide a list of IP's in the form of a regular expression which are then whitelisted. See below.

Optional environment variables

  • USER_UID User ID of the lighttpd daemon account (default: 2222).
  • USER_GID Group ID of the lighttpd daemon account (default: 2222).
  • WHITELIST Regexp for a list of IP's (default: none). Example: -e WHITELIST='192.168.1.*|172.16.1.2'
  • READWRITE When this is set to true, the WebDAV share can be written to (default: False). Example: -e READWRITE=true

IMPORTANT: Should you use a persistent config volume, the WHITELIST and READWRITE variables will only have effect the first time. I.e., when you don't have a (custom) configuration yet.

License

MIT / BSD

Author Information

Jeroen Geusebroek Andreas Sehr