Stacks included:
- Infrastructure: traefik, authentik, gitea, registry, watchtower, dockge
- Monitoring: smokeping, changedetection
- Apps: ghost, gollum, wallabag, radicale, invidious, xbackbone, filebrowser, syncthing, zerotier
- Custom: obsidian-tools, memento, perilous, ramz, bookclub, brain
🤖 Generated with Claude Code
23 lines
615 B
YAML
23 lines
615 B
YAML
services:
|
|
filebrowser:
|
|
image: filebrowser/filebrowser:latest
|
|
container_name: filebrowser
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./config/filebrowser.db:/database.db
|
|
- ${FILE_ROOT:-/srv}:/srv
|
|
expose:
|
|
- 80
|
|
networks:
|
|
- web
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.filebrowser.entrypoints=https"
|
|
- "traefik.http.routers.filebrowser.rule=Host(`files.${DOMAIN}`)"
|
|
- "traefik.http.routers.filebrowser.tls.certresolver=http"
|
|
- "traefik.http.services.filebrowser.loadbalancer.server.port=80"
|
|
|
|
networks:
|
|
web:
|
|
external: true
|