mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-24 04:21:14 +00:00
16 lines
442 B
YAML
16 lines
442 B
YAML
services:
|
|
|
|
filebrowser:
|
|
image: hurlenko/filebrowser
|
|
container_name: filebrowser
|
|
restart: unless-stopped
|
|
user: 1000:1000 # adjust to your needs
|
|
environment:
|
|
- FB_BASEURL=/filebrowser
|
|
ports:
|
|
- 8080:8080
|
|
expose:
|
|
- 8080
|
|
volumes:
|
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/filebrowser/data:/data
|
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/filebrowser/config:/config |