Files
docker-configs/navidrome/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
575 B
YAML

version: '3.8'
services:
navidrome:
image: deluan/navidrome:latest
container_name: navidrome
restart: unless-stopped
user: 1000:1000 # 设置为你的用户ID
ports:
- "4533:4533"
environment:
ND_MUSICFOLDER: /music
ND_DATAFOLDER: /data
ND_LOGLEVEL: info
ND_SESSIONTIMEOUT: 24h
ND_ENABLETRANSCODINGCONFIG: true
volumes:
- ./data:/data
- ./music:/music:ro # 你的音乐文件夹路径,只读模式
networks:
- caddy_caddy-network
networks:
caddy_caddy-network:
external: true