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
+4 -4
View File
@@ -9,7 +9,7 @@
set -e
# Configuration
GITEA_URL="http://192.168.88.200:3000"
GITEA_URL="http://192.168.88.27:3002"
GITEA_USER="jgitta"
REPO_NAME="homelab-configs"
LITELLM_API="http://192.168.88.27:4000"
@@ -167,7 +167,7 @@ volumes:
| Service | URL/IP | Purpose |
|---------|--------|---------|
| Gitea | http://192.168.88.200:3000 | Central config repository |
| Gitea | http://192.168.88.27:3002 | Central config repository |
| LiteLLM API | http://192.168.88.27:4000 | Unified AI model gateway |
| Nextcloud (next) | 192.168.88.62 | Running OpenCode |
| Docker Server (siklos) | 192.168.88.27 | Hosting LiteLLM |
@@ -206,7 +206,7 @@ To add a new service to centralized config:
**Last Updated**: April 25, 2026
**Maintained By**: jgitta
**Repository**: http://192.168.88.200:3000/jgitta/homelab-configs
**Repository**: http://192.168.88.27:3002/jgitta/homelab-configs
EOF
echo -e "${GREEN}✅ Created README.md${NC}"
@@ -273,7 +273,7 @@ services:
command: |
-c "
mkdir -p /tmp/configs
git clone http://192.168.88.200:3000/jgitta/homelab-configs.git /tmp/configs || true
git clone http://192.168.88.27:3002/jgitta/homelab-configs.git /tmp/configs || true
mkdir -p /root/.opencode
cp /tmp/configs/opencode/config.json /root/.opencode/config.json
exec opencode
+4 -4
View File
@@ -99,13 +99,13 @@ fi
# Test 4: Gitea Accessibility
section "Test 4: Gitea Repository Connectivity"
if timeout 5 docker exec opencode curl -s http://192.168.88.200:3000/api/v1/version > /dev/null 2>&1; then
pass "Gitea is accessible at 192.168.88.200:3000"
if timeout 5 docker exec opencode curl -s http://192.168.88.27:3002/api/v1/version > /dev/null 2>&1; then
pass "Gitea is accessible at 192.168.88.27:3002"
GITEA_VERSION=$(docker exec opencode curl -s http://192.168.88.200:3000/api/v1/version | grep -o '"version":"[^"]*"' | cut -d'"' -f4)
GITEA_VERSION=$(docker exec opencode curl -s http://192.168.88.27:3002/api/v1/version | grep -o '"version":"[^"]*"' | cut -d'"' -f4)
info "Gitea version: $GITEA_VERSION"
else
fail "Cannot reach Gitea at 192.168.88.200:3000"
fail "Cannot reach Gitea at 192.168.88.27:3002"
info "Check Gitea status on docker-server"
fi