14 lines
362 B
YAML
14 lines
362 B
YAML
services:
|
|
filebrowser:
|
|
image: gtstef/filebrowser:stable
|
|
container_name: filebrowser
|
|
environment:
|
|
- "FILEBROWSER_CONFIG=data/config.yaml" # using our config file at ./data/config.yaml
|
|
ports:
|
|
- 8900:80
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./data:/home/filebrowser/data
|
|
- ./files:/files
|
|
- /mnt/storage:/storage
|