19 lines
660 B
YAML
19 lines
660 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
app_proxy:
|
|
environment:
|
|
APP_HOST: my-filebrowser-quantum_web_1
|
|
APP_PORT: 80
|
|
|
|
web:
|
|
image: ghcr.io/gtsteffaniak/filebrowser:1.1.0-stable@sha256:3db0a5ebde84ff1de72c93f776495089e79f3e710e931687c1a720c162e32a20
|
|
restart: on-failure
|
|
environment:
|
|
FILEBROWSER_CONFIG: "data/config.yaml" # overrides the default path which is ./config.yaml
|
|
FILEBROWSER_ADMIN_PASSWORD: "change-me"
|
|
TZ: "Europe/Amsterdam"
|
|
volumes:
|
|
- ${UMBREL_ROOT}/data/storage:/storage # your files (unchanged, good)
|
|
- ${APP_DATA_DIR}/data:/home/filebrowser/data # single mount for config + database + cache/tmp
|