23 lines
646 B
YAML
23 lines
646 B
YAML
services:
|
|
filebrowser:
|
|
image: ghcr.io/gtsteffaniak/filebrowser
|
|
container_name: filebrowser-quantum
|
|
restart: always
|
|
user: root
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost/health"]
|
|
interval: 30s
|
|
timeout: 3s
|
|
start_period: 10s
|
|
retries: 3
|
|
volumes:
|
|
- /docker/data/files:/folder
|
|
- /docker/data/filebrowser-quantum/db:/home/filebrowser/data/database
|
|
- /docker/data/filebrowser-quantum/tmp:/home/filebrowser/data/tmp
|
|
- ./config/config.yaml:/home/filebrowser/data/config.yaml:ro
|
|
networks:
|
|
- caddy_default
|
|
networks:
|
|
caddy_default:
|
|
external: true
|