Update Gitea references from 192.168.88.200:3000 to 192.168.88.27:3002 (Docker migration)

This commit is contained in:
Automation
2026-04-25 18:05:05 -05:00
parent b792d5bf41
commit 7b38a5af31
22 changed files with 68 additions and 68 deletions
+2 -2
View File
@@ -7,7 +7,7 @@
-**LiteLLM Container**: Running on docker-server (siklos, 192.168.88.27:4000)
-**Docker Compose**: Configured and ready at `/opt/litellm/`
-**Configuration**: Git initialized with config files in `/opt/litellm/config/`
-**Gitea**: Ready at http://192.168.88.200:3000 for repository management
-**Gitea**: Ready at http://192.168.88.27:3002 for repository management
-**All VMs**: Network access confirmed to docker-server
---
@@ -162,7 +162,7 @@ Once tested, you can:
```bash
# Create litellm-config repo in Gitea, then:
cd /opt/litellm
git remote add gitea http://192.168.88.200:3000/jgitta/litellm-config.git
git remote add gitea http://192.168.88.27:3002/jgitta/litellm-config.git
git pull gitea master
```
+2 -2
View File
@@ -31,7 +31,7 @@ Master Key: litellm-local-key-change-in-production (⚠️ CHANGE THIS in produc
**Why?** This centralizes your API key management in version control. Updates to one place affect all VMs.
1. Open: **http://192.168.88.200:3000** (Your Gitea instance)
1. Open: **http://192.168.88.27:3002** (Your Gitea instance)
2. Login with your account (jgitta)
3. Click **"+"** icon (top right) → **"New Repository"**
4. Fill in:
@@ -147,7 +147,7 @@ docker-server (siklos @ 192.168.88.27)
├── litellm_config.yaml # Model definitions & API keys
└── README.md # Config documentation
Gitea (gitea @ 192.168.88.200:3000)
Gitea (gitea @ 192.168.88.27:3002)
└── jgitta/litellm-config/
└── (same files as above)
```
@@ -3,7 +3,7 @@
# This configuration pulls OpenCode config from centralized Gitea repository
# instead of managing per-VM configuration files
#
# Updated for centralized config management via http://192.168.88.200:3000
# Updated for centralized config management via http://192.168.88.27:3002
version: '3.8'
@@ -40,7 +40,7 @@ services:
mkdir -p /tmp/homelab-configs
# Clone the central configs repo
if git clone http://192.168.88.200:3000/jgitta/homelab-configs.git /tmp/homelab-configs; then
if git clone http://192.168.88.27:3002/jgitta/homelab-configs.git /tmp/homelab-configs; then
echo '✅ Configuration fetched successfully'
else
echo '⚠️ Could not fetch configs from Gitea, using defaults'