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