Files
coolify/templates/compose/filebrowser.yaml
2025-09-11 23:21:48 +07:00

37 lines
1007 B
YAML

# documentation: https://filebrowser.org
# slogan: FileBrowser is a web-based file manager and file explorer with a user-friendly interface.
# category: storage
# tags: file-management, storage-access, data-organization, file-utilization, administration-tool
# logo: svgs/filebrowser.svg
# port: 80
services:
filebrowser:
image: filebrowser/filebrowser:latest
environment:
- SERVICE_URL_FILEBROWSER_80
volumes:
- type: bind
source: ./srv
target: /srv
isDirectory: true
- type: bind
source: ./database.db
target: /database.db
isDirectory: false
content: ""
- type: bind
source: ./filebrowser.json
target: /.filebrowser.json
read_only: true
content: |
{
"address": "0.0.0.0",
"port": 80
}
healthcheck:
test: ["CMD-SHELL", "wget -q --spider http://localhost:80 || exit 1"]
interval: 10s
timeout: 3s
retries: 10