{"id":44880242,"url":"https://github.com/binhex/arch-filebrowser","last_synced_at":"2026-04-02T17:00:19.320Z","repository":{"id":338995639,"uuid":"1159974472","full_name":"binhex/arch-filebrowser","owner":"binhex","description":null,"archived":false,"fork":false,"pushed_at":"2026-03-28T19:34:36.000Z","size":31,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-28T21:23:09.043Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/binhex.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2026-02-17T11:48:06.000Z","updated_at":"2026-03-18T09:12:23.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/binhex/arch-filebrowser","commit_stats":null,"previous_names":["binhex/arch-filebrowser"],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/binhex/arch-filebrowser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/binhex%2Farch-filebrowser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/binhex%2Farch-filebrowser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/binhex%2Farch-filebrowser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/binhex%2Farch-filebrowser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/binhex","download_url":"https://codeload.github.com/binhex/arch-filebrowser/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/binhex%2Farch-filebrowser/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31310998,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T12:59:32.332Z","status":"ssl_error","status_checked_at":"2026-04-02T12:54:48.875Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-02-17T16:00:36.814Z","updated_at":"2026-04-02T17:00:19.314Z","avatar_url":"https://github.com/binhex.png","language":"Shell","funding_links":["https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif","https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick\u0026hosted_button_id=MM5E27UX6AUU4"],"categories":[],"sub_categories":[],"readme":"# Application\n\n[File Browser](https://github.com/filebrowser/filebrowser)\n\n## Description\n\nFile Browser provides a file managing interface within a specified directory.\nIt can be used to upload, delete, preview and edit files from a web browser.\n\n## Build notes\n\nLatest GitHub release.\n\n## Usage\n\n```bash\ndocker run -d \\\n        --name=\u003ccontainer name\u003e \\\n        -p \u003cwebui port\u003e:8125 \\\n        -v \u003cpath for config files\u003e:/config \\\n        -v \u003cpath for files\u003e:/media \\\n        -v /etc/localtime:/etc/localtime:ro \\\n        -e FILEBROWSER_ROOT=\u003cpath to expose\u003e \\\n        -e FILEBROWSER_BASEURL=\u003cbase url\u003e \\\n        -e ENABLE_AUTHENTICATION=\u003cyes|no\u003e \\\n        -e ENABLE_TLS=\u003cyes|no\u003e \\\n        -e ADDITIONAL_PARAMETERS=\u003ccli options\u003e \\\n        -e ENABLE_HEALTHCHECK=\u003cyes|no\u003e \\\n        -e HEALTHCHECK_COMMAND=\u003ccommand\u003e \\\n        -e HEALTHCHECK_ACTION=\u003caction\u003e \\\n        -e HEALTHCHECK_HOSTNAME=\u003chostname\u003e \\\n        -e UMASK=\u003cumask for created files\u003e \\\n        -e PUID=\u003cuid for user\u003e \\\n        -e PGID=\u003cgid for user\u003e \\\n        ghcr.io/binhex/arch-filebrowser\n```\n\nPlease replace all user variables in the above command defined by \u003c\u003e with the\ncorrect values.\n\n## Access application\n\n`http://\u003chost ip\u003e:8125`\n\nDefault username/password: `admin/filebrowser`\n\n## Example\n\n```bash\ndocker run -d \\\n        --name=filebrowser \\\n        -p 8125:8125 \\\n        -v /apps/docker/filebrowser:/config \\\n        -v /mnt/user:/media \\\n        -v /etc/localtime:/etc/localtime:ro \\\n        -e ENABLE_AUTHENTICATION=yes \\\n        -e FILEBROWSER_ROOT=/media \\\n        -e FILEBROWSER_BASEURL=/ \\\n        -e ENABLE_TLS=no \\\n        -e UMASK=000 \\\n        -e PUID=99 \\\n        -e PGID=100 \\\n        ghcr.io/binhex/arch-filebrowser\n```\n\n## Notes\n\n- Set `FILEBROWSER_ROOT` to the path you want visible in the File Browser UI\n    (for example `/media`).\n- If `ENABLE_TLS=yes`, self-signed certificates are auto-generated in\n    `/config/filebrowser/certs` if missing.\n\nUser ID (PUID) and Group ID (PGID) can be found by issuing the following\ncommand for the user you want to run the container as:-\n\n```bash\nid \u003cusername\u003e\n```\n\n___\nIf you appreciate my work, then please consider buying me a beer  :D\n\n[![PayPal donation](https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick\u0026hosted_button_id=MM5E27UX6AUU4)\n\n[Documentation](https://github.com/binhex/documentation) | [Support forum](https://forums.unraid.net/topic/197257-support-binhex-file-browser/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbinhex%2Farch-filebrowser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbinhex%2Farch-filebrowser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbinhex%2Farch-filebrowser/lists"}