## ✨ 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>
SillyTavern Docker Setup
This directory contains Docker configuration for SillyTavern, a frontend for AI chat.
Quick Start
-
Ensure the Caddy network exists:
docker network create caddy-network -
Start SillyTavern:
docker-compose up -d -
Access SillyTavern:
- Local: http://localhost:8000
- Domain: https://silly.will123song.xyz (via Caddy reverse proxy)
Configuration
- API Keys: Pre-configured with tokens from
~/docker/tokens.txt - Reverse Proxy: Configured in Caddy for
silly.will123song.xyz - Persistent Data: All user data, characters, and chats are stored in local volumes
Volumes
./config- SillyTavern configuration files./characters- Character definitions./chats- Chat history./groups- Group chats./worlds- World info./themes- Custom themes./avatars- User avatars./backups- Automatic backups
API Support
Configured with the following AI APIs:
- OpenAI (GPT models)
- Anthropic Claude
- DeepSeek
- Kimi (Moonshot)
- Google Gemini
- Alpha Vantage (for financial data)
Management
# View logs
docker-compose logs -f
# Restart service
docker-compose restart
# Stop service
docker-compose down
# Update image
docker-compose pull
docker-compose up -d