Files
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
..
2025-07-16 21:34:17 -05:00
2025-07-16 21:34:17 -05:00

SillyTavern Docker Setup

This directory contains Docker configuration for SillyTavern, a frontend for AI chat.

Quick Start

  1. Ensure the Caddy network exists:

    docker network create caddy-network
    
  2. Start SillyTavern:

    docker-compose up -d
    
  3. Access SillyTavern:

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