{"id":31702429,"url":"https://github.com/fraoustin/webdav","last_synced_at":"2026-05-15T01:36:27.302Z","repository":{"id":77594255,"uuid":"129587066","full_name":"fraoustin/webdav","owner":"fraoustin","description":"container docker for run webdav server with nginx-fancy-index theme ihm ","archived":false,"fork":false,"pushed_at":"2020-08-05T07:23:41.000Z","size":16,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-08T21:53:25.903Z","etag":null,"topics":["active","docker-image"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fraoustin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-04-15T07:26:12.000Z","updated_at":"2020-08-05T07:43:14.000Z","dependencies_parsed_at":null,"dependency_job_id":"62df2f2d-0f08-428b-b680-bc66532c325d","html_url":"https://github.com/fraoustin/webdav","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/fraoustin/webdav","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fraoustin%2Fwebdav","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fraoustin%2Fwebdav/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fraoustin%2Fwebdav/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fraoustin%2Fwebdav/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fraoustin","download_url":"https://codeload.github.com/fraoustin/webdav/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fraoustin%2Fwebdav/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33050361,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-14T02:00:06.663Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["active","docker-image"],"created_at":"2025-10-08T21:51:38.347Z","updated_at":"2026-05-15T01:36:27.294Z","avatar_url":"https://github.com/fraoustin.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docker Image for gitweb\r\n\r\ngenerate a nginx server webdav\r\n\r\nYou can use client\r\n\r\n- ihm on http://127.0.0.1/ (fraoustin/Nginx-Fancyindex-Theme)\r\n- windows : winscp https://sourceforge.net/projects/winscp/\r\n- android : in play store you can find apps (WebDAV Navigator Lite, ...)\r\n- linux : by nautilus (davfs://127.0.0.1/) or by davfs2 \r\n\r\n    apt-get install davfs2\r\n\r\n    mount.davfs http://127.0.0.1 /media/mywebdav\r\n\r\nYou can read https://doc.ubuntu-fr.org/davfs2\r\n\r\n\r\nload when start image load file in\r\n\r\n- /usr/share/gitweb/docker-entrypoint.pre\r\n- /usr/share/gitweb/docker-entrypoint.post\r\n\r\n## Parameter\r\n\r\n- SET_CONTAINER_TIMEZONE (false or true) manage time of container\r\n- CONTAINER_TIMEZONE timezone of container\r\n- DAVUSER (default user)\r\n- DAVPASSWORD (default pass)\r\n- COLOR (default blue) for web ihm (blue, green, grey, greydark, orange, purple, red)\r\n\r\n## Volume\r\n\r\n- /share\r\n\r\n## Port\r\n\r\n- 80 \r\n\r\n## Command\r\n\r\n- addauth : add user for git\r\n- rmauth : remove user\r\n\r\n## Usage direct\r\n\r\nrun image fraoustin/webdav\r\n\r\n    docker run -d -v \u003clocalpath\u003e:/share --name webdav -p 80:80 fraoustin/webdav\r\n\r\nuser default is *user* and password default is *pass*\r\n\r\nyou use http://localhost/ for access ihm\r\n\r\n## Usage by Dockerfile\r\n\r\nSample of Dockerfile\r\n\r\n    FROM fraoustin/webdav\r\n    COPY ./00_init.sh /usr/share/docker-entrypoint.pre/00_init.sh\r\n    RUN chmod +x -R /usr/share/gitweb/docker-entrypoint.pre\r\n\r\nFile 00_init.sh\r\n\r\n    #!/bin/bash\r\n    if [ ! -z \"$DAVUSER\" ]; then\r\n        addauth $DAVUSER $DAVPASSWORD\r\n    fi    \r\n\r\n\r\nbuild image mywebdav\r\n\r\n    docker build -t mywebdav .\r\n\r\nrun image mywebdav\r\n\r\n    docker run -d -e \"CONTAINER_TIMEZONE=Europe/Paris\" -e DAVUSER=myuser\" -e \"DAVPASSWORD=mypassword\" -v \u003clocalpath\u003e:/share --name test -p 80:80 mywebdav\r\n\r\n## External library\r\n\r\n- mdl on https://getmdl.io/\r\n- Nginx-Fancyindex-Theme on https://github.com/fraoustin/Nginx-Fancyindex-Theme\r\n- wedav.js on https://github.com/aslakhellesoy/webdavjs\r\n\r\n\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffraoustin%2Fwebdav","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffraoustin%2Fwebdav","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffraoustin%2Fwebdav/lists"}