feat(filebrowser): add filebrowser stack
This commit is contained in:
3
compose/filebrowser/.env.example
Normal file
3
compose/filebrowser/.env.example
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
HTTP_PORT="8080"
|
||||||
|
DATA_PATH="/path/to/your/data"
|
||||||
|
FB_BASEURL="/"
|
||||||
15
compose/filebrowser/docker-compose.yml
Normal file
15
compose/filebrowser/docker-compose.yml
Normal 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
|
||||||
Reference in New Issue
Block a user