...
To run the quickstart a few system requirements must be in place:
- You must have Docker installed.
- A java runtime environment of version 11 or newer is needed. JAVA_HOME must be set appropriately.
- curl is required by the setup script to retrieve the Tomcat servlet container
...
Code Block |
---|
sudo docker run -it -v /some/local/folder/dav:/site/dav -p 80:80 --userns=host -e uid=$(id -u) -e gid=$(id -g) blekinge/apache_webdav |
The web server creates the mentioned directory if it doesn’t exist, so remember to supply an appropriate path name instead of /some/local/folder/dav
.
The docker image in question is https://hub.docker.com/r/blekinge/apache_webdav
...