https://github.com/binhex/arch-filebrowser
https://github.com/binhex/arch-filebrowser
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/binhex/arch-filebrowser
- Owner: binhex
- License: gpl-3.0
- Created: 2026-02-17T11:48:06.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-03-28T19:34:36.000Z (3 months ago)
- Last Synced: 2026-03-28T21:23:09.043Z (3 months ago)
- Language: Shell
- Size: 30.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Application
[File Browser](https://github.com/filebrowser/filebrowser)
## Description
File Browser provides a file managing interface within a specified directory.
It can be used to upload, delete, preview and edit files from a web browser.
## Build notes
Latest GitHub release.
## Usage
```bash
docker run -d \
--name= \
-p :8125 \
-v :/config \
-v :/media \
-v /etc/localtime:/etc/localtime:ro \
-e FILEBROWSER_ROOT= \
-e FILEBROWSER_BASEURL= \
-e ENABLE_AUTHENTICATION= \
-e ENABLE_TLS= \
-e ADDITIONAL_PARAMETERS= \
-e ENABLE_HEALTHCHECK= \
-e HEALTHCHECK_COMMAND= \
-e HEALTHCHECK_ACTION= \
-e HEALTHCHECK_HOSTNAME= \
-e UMASK= \
-e PUID= \
-e PGID= \
ghcr.io/binhex/arch-filebrowser
```
Please replace all user variables in the above command defined by <> with the
correct values.
## Access application
`http://:8125`
Default username/password: `admin/filebrowser`
## Example
```bash
docker run -d \
--name=filebrowser \
-p 8125:8125 \
-v /apps/docker/filebrowser:/config \
-v /mnt/user:/media \
-v /etc/localtime:/etc/localtime:ro \
-e ENABLE_AUTHENTICATION=yes \
-e FILEBROWSER_ROOT=/media \
-e FILEBROWSER_BASEURL=/ \
-e ENABLE_TLS=no \
-e UMASK=000 \
-e PUID=99 \
-e PGID=100 \
ghcr.io/binhex/arch-filebrowser
```
## Notes
- Set `FILEBROWSER_ROOT` to the path you want visible in the File Browser UI
(for example `/media`).
- If `ENABLE_TLS=yes`, self-signed certificates are auto-generated in
`/config/filebrowser/certs` if missing.
User ID (PUID) and Group ID (PGID) can be found by issuing the following
command for the user you want to run the container as:-
```bash
id
```
___
If you appreciate my work, then please consider buying me a beer :D
[](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MM5E27UX6AUU4)
[Documentation](https://github.com/binhex/documentation) | [Support forum](https://forums.unraid.net/topic/197257-support-binhex-file-browser/)