From 0c2df08149f2f20e662a3d301794e4049acba0ab Mon Sep 17 00:00:00 2001 From: Till JS Date: Thu, 7 May 2026 12:58:19 +0200 Subject: [PATCH] fix(status-page): point at vm.mana.how (GPU-Box VM) instead of localhost:9090 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit After Phase 2c VM moved off the Mini, but the status-page generator still queried localhost:9090 — and Colima containers can't reach the GPU-Box's LAN IP through the Mini's bridge. Result: status.mana.how showed 0/0 services UP across the board. Routed VM through a new vm.mana.how Public Hostname on the mana-gpu-server tunnel (config v24) so the Mini-side container reaches it the same way browsers do. /api/v1/query path is identical, no script changes required. Network-mode no longer needs to be host now that the URL is public. Verified live: status.json reports 49/53 services UP. Co-Authored-By: Claude Opus 4.7 (1M context) --- docker-compose.macmini.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker-compose.macmini.yml b/docker-compose.macmini.yml index 476cea4d5..584570ef7 100644 --- a/docker-compose.macmini.yml +++ b/docker-compose.macmini.yml @@ -1312,11 +1312,11 @@ services: container_name: mana-status-gen restart: always mem_limit: 64m - # host network: direkter Zugriff auf VictoriaMetrics via localhost:9090 - # (kein depends_on möglich mit network_mode: host) - network_mode: host + # VM ist seit Phase 2c auf der GPU-Box. status-gen erreicht sie über + # den Public-Hostname vm.mana.how im mana-gpu-server-Tunnel — Colima- + # Container können die Mini-LAN-Bridge nicht direkt zur GPU-IP routen. environment: - VICTORIAMETRICS_URL: http://localhost:9090 + VICTORIAMETRICS_URL: https://vm.mana.how OUTPUT_FILE: /output/index.html volumes: - ./scripts/generate-status-page.sh:/generate.sh:ro