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