Files
admin 9ea31368f5 Complete Traefik infrastructure deployment - 60% complete
Major accomplishments:
-  SELinux policy installed and working
-  Core Traefik v2.10 deployment running
-  Production configuration ready (v3.1)
-  Monitoring stack configured
-  Comprehensive documentation created
-  Security hardening implemented

Current status:
- 🟡 Partially deployed (60% complete)
- ⚠️ Docker socket access needs resolution
-  Monitoring stack not deployed yet
- ⚠️ Production migration pending

Next steps:
1. Fix Docker socket permissions
2. Deploy monitoring stack
3. Migrate to production config
4. Validate full functionality

Files added:
- Complete Traefik deployment documentation
- Production and test configurations
- Monitoring stack configurations
- SELinux policy module
- Security checklists and guides
- Current status documentation
2025-08-28 15:22:41 -04:00

53 lines
1.3 KiB
YAML

version: '3.9'
services:
jellyfin:
image: jellyfin/jellyfin:10.9.10
environment:
- JELLYFIN_PublishedServerUrl=jellyfin.localhost
volumes:
- jellyfin_config:/config
- jellyfin_cache:/cache
- media_movies:/media/movies:ro
- media_tv:/media/tv:ro
networks:
- traefik-public
deploy:
resources:
reservations:
devices:
- capabilities: [gpu]
device_ids: ["0"]
labels:
- traefik.enable=true
- traefik.http.routers.jellyfin.rule=Host(`jellyfin.localhost`)
- traefik.http.routers.jellyfin.entrypoints=websecure
- traefik.http.routers.jellyfin.tls=true
- traefik.http.services.jellyfin.loadbalancer.server.port=8096
volumes:
jellyfin_config:
driver: local
driver_opts:
type: nfs
o: addr=omv800.local,nolock,soft,rw
device: :/export/jellyfin/config
jellyfin_cache:
driver: local
media_movies:
driver: local
driver_opts:
type: nfs
o: addr=omv800.local,nolock,soft,ro
device: :/export/media/movies
media_tv:
driver: local
driver_opts:
type: nfs
o: addr=omv800.local,nolock,soft,ro
device: :/export/media/tv
networks:
traefik-public:
external: true