Files
docker-configs/jellyfin/docker-compose.yml
Will Song 72ad0439f5 🚀 Major Docker services update and infrastructure reorganization
##  New Services Added
- **Navidrome**: Music streaming server with domain music.will123song.xyz
- **Jellyfin**: Media server with full hardware acceleration support
- **1Panel**: Server management panel with domain 1panel.will123song.xyz

## 🔧 Infrastructure Updates
- Updated Caddy reverse proxy configuration
- Added new domain mappings for all services
- Enhanced service discovery and networking

## 🗑️ Cleanup
- Removed gemini-balance service (deprecated)
- Removed simple-gemini-proxy service (no longer needed)
- Cleaned up related configurations

## 🛠️ Service Improvements
- Fixed AI claude-bot restart loop issue
- Updated SillyTavern configurations
- Added new character assets and workflows

## 📋 Service Status
- All new services deployed and operational
- Domain routing configured and tested
- Network connectivity verified

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-28 19:32:46 -05:00

25 lines
643 B
YAML

services:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
restart: unless-stopped
user: 1000:1000
ports:
- "8096:8096"
- "8920:8920" # HTTPS
- "7359:7359/udp" # Auto-discovery
- "1900:1900/udp" # DLNA
environment:
- JELLYFIN_PublishedServerUrl=https://jellyfin.will123song.xyz
volumes:
- ./config:/config
- ./cache:/cache
- ./media:/media:ro # 媒体文件夹,只读模式
networks:
- caddy_caddy-network
devices:
- /dev/dri:/dev/dri # 硬件加速支持(可选)
networks:
caddy_caddy-network:
external: true