docs(container): fix GPU_SERVER_URL for Xander — use public orch.circuitforge.tech
Xander's xanderland.tv has no WireGuard route to Heimdall's LAN (10.1.10.x), so the 10.1.10.71:7700 private address is unreachable from there. Use the public cf-orch endpoint instead: GPU_SERVER_URL=https://orch.circuitforge.tech Daniel's Huginn has WireGuard to Heimdall LAN — 10.1.10.71:7700 stays correct. Added both options to docker-standalone.sh for clarity.
This commit is contained in:
parent
681495a732
commit
e3f8ad6bab
2 changed files with 12 additions and 6 deletions
|
|
@ -85,13 +85,17 @@ TZ="${TZ:-America/Los_Angeles}"
|
|||
|
||||
# ── Multi-agent diagnose pipeline ────────────────────────────────────────────
|
||||
# Enable the 5-stage ML pipeline to get smarter diagnose results.
|
||||
# Requires WireGuard connectivity to Heimdall (10.1.10.71) for LLM synthesis.
|
||||
#
|
||||
# For Daniel's instance (Huginn) — Heimdall's cf-orch via WireGuard:
|
||||
# If your host has WireGuard to Heimdall's LAN (e.g. Huginn):
|
||||
# export GPU_SERVER_URL=http://10.1.10.71:7700
|
||||
# export TURNSTONE_MULTI_AGENT_DIAGNOSE=true
|
||||
# bash ~/turnstone/docker-standalone.sh
|
||||
#
|
||||
# If your host has no WireGuard to Heimdall (use public cf-orch endpoint):
|
||||
# export GPU_SERVER_URL=https://orch.circuitforge.tech
|
||||
# export TURNSTONE_MULTI_AGENT_DIAGNOSE=true
|
||||
# bash ~/turnstone/docker-standalone.sh
|
||||
#
|
||||
# ML models are downloaded on first diagnose run and cached in HF_CACHE_DIR.
|
||||
# First run takes a few minutes (downloading ~400MB of CPU-only models).
|
||||
# Subsequent runs are instant (models served from hf-cache/).
|
||||
|
|
|
|||
|
|
@ -91,15 +91,17 @@ TZ=America/Los_Angeles
|
|||
# ML models are downloaded on first diagnose run and cached in HF_CACHE_DIR.
|
||||
# On a CPU-only host (no GPU) set TURNSTONE_EMBED_DEVICE=cpu (default).
|
||||
#
|
||||
# For Xander's instance (xanderland.tv) — Heimdall's cf-orch via WireGuard:
|
||||
# export GPU_SERVER_URL=http://10.1.10.71:7700
|
||||
# For Xander's instance (xanderland.tv) — no WireGuard to Heimdall LAN,
|
||||
# use the public cf-orch endpoint instead:
|
||||
# export GPU_SERVER_URL=https://orch.circuitforge.tech
|
||||
# export TURNSTONE_MULTI_AGENT_DIAGNOSE=true
|
||||
# sudo bash /opt/turnstone/podman-standalone.sh
|
||||
#
|
||||
# For Daniel's instance (Huginn) — same cf-orch via WireGuard:
|
||||
# For Daniel's instance (Huginn) — WireGuard reaches Heimdall LAN directly,
|
||||
# use docker-standalone.sh (not this script — Docker host):
|
||||
# export GPU_SERVER_URL=http://10.1.10.71:7700
|
||||
# export TURNSTONE_MULTI_AGENT_DIAGNOSE=true
|
||||
# bash /opt/turnstone/podman-standalone.sh (or rebuild Docker container)
|
||||
# bash ~/turnstone/docker-standalone.sh
|
||||
|
||||
# ── Turnstone container ───────────────────────────────────────────────────────
|
||||
# Image is built locally — no registry auto-update label.
|
||||
|
|
|
|||
Loading…
Reference in a new issue