feat(filebrowser): add filebrowser stack

This commit is contained in:
2026-01-22 15:07:51 +01:00
parent be9ae414dc
commit 9e5e1e541e
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
HTTP_PORT="8080"
DATA_PATH="/path/to/your/data"
FB_BASEURL="/"

View File

@@ -0,0 +1,15 @@
services:
filebrowser:
image: hurlenko/filebrowser
container_name: filebrowser
env_file:
- .env
user: "${PUID:-1000}:${PGID:-1000}"
ports:
- "${HTTP_PORT:-8080}:8080"
volumes:
- "${DATA_PATH:?DATA_PATH not set}:/data"
- "${VOLUMES_DIR:?VOLUMES_DIR not set}/filebrowser:/config"
environment:
- FB_BASEURL: "${FB_BASEURL:-/}"
restart: unless-stopped