https://github.com/fraoustin/webdav
container docker for run webdav server with nginx-fancy-index theme ihm
https://github.com/fraoustin/webdav
active docker-image
Last synced: about 1 month ago
JSON representation
container docker for run webdav server with nginx-fancy-index theme ihm
- Host: GitHub
- URL: https://github.com/fraoustin/webdav
- Owner: fraoustin
- Created: 2018-04-15T07:26:12.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-08-05T07:23:41.000Z (almost 6 years ago)
- Last Synced: 2025-10-08T21:53:25.903Z (9 months ago)
- Topics: active, docker-image
- Language: JavaScript
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker Image for gitweb
generate a nginx server webdav
You can use client
- ihm on http://127.0.0.1/ (fraoustin/Nginx-Fancyindex-Theme)
- windows : winscp https://sourceforge.net/projects/winscp/
- android : in play store you can find apps (WebDAV Navigator Lite, ...)
- linux : by nautilus (davfs://127.0.0.1/) or by davfs2
apt-get install davfs2
mount.davfs http://127.0.0.1 /media/mywebdav
You can read https://doc.ubuntu-fr.org/davfs2
load when start image load file in
- /usr/share/gitweb/docker-entrypoint.pre
- /usr/share/gitweb/docker-entrypoint.post
## Parameter
- SET_CONTAINER_TIMEZONE (false or true) manage time of container
- CONTAINER_TIMEZONE timezone of container
- DAVUSER (default user)
- DAVPASSWORD (default pass)
- COLOR (default blue) for web ihm (blue, green, grey, greydark, orange, purple, red)
## Volume
- /share
## Port
- 80
## Command
- addauth : add user for git
- rmauth : remove user
## Usage direct
run image fraoustin/webdav
docker run -d -v :/share --name webdav -p 80:80 fraoustin/webdav
user default is *user* and password default is *pass*
you use http://localhost/ for access ihm
## Usage by Dockerfile
Sample of Dockerfile
FROM fraoustin/webdav
COPY ./00_init.sh /usr/share/docker-entrypoint.pre/00_init.sh
RUN chmod +x -R /usr/share/gitweb/docker-entrypoint.pre
File 00_init.sh
#!/bin/bash
if [ ! -z "$DAVUSER" ]; then
addauth $DAVUSER $DAVPASSWORD
fi
build image mywebdav
docker build -t mywebdav .
run image mywebdav
docker run -d -e "CONTAINER_TIMEZONE=Europe/Paris" -e DAVUSER=myuser" -e "DAVPASSWORD=mypassword" -v :/share --name test -p 80:80 mywebdav
## External library
- mdl on https://getmdl.io/
- Nginx-Fancyindex-Theme on https://github.com/fraoustin/Nginx-Fancyindex-Theme
- wedav.js on https://github.com/aslakhellesoy/webdavjs