create a server nginx with module fancy index and ihm material
50K+
generate a nginx server with fancyindex
You can use client
load when start image load file in
run image fraoustin/webdav
docker run -d -v <localpath>:/share --name fancyindex -p 80:80 fraoustin/fancyindex
user default is user and password default is pass
you use http://localhost/ for access ihm
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 "$WEBUSER" ]; then
addauth $WEBUSER $WEPASSWORD
fi
build image mywebdav
docker build -t myfancyindex .
run image mywebdav
docker run -d -e "CONTAINER_TIMEZONE=Europe/Paris" -e WEBUSER=myuser" -e "WEBPASSWORD=mypassword" -v <localpath>:/share --name test -p 8080:80 myfancyindex
Content type
Image
Digest
Size
83.4 MB
Last updated
over 4 years ago
docker pull fraoustin/fancyindex