From 8a64dc8db6670eea6713665b3e40dc1901bb02e8 Mon Sep 17 00:00:00 2001 From: abix5 <6427182+abix5@users.noreply.github.com> Date: Mon, 16 Mar 2026 18:19:40 +0300 Subject: [PATCH] fix(docker): honor HINDSIGHT_CP_HOSTNAME for control-plane startup (#590) Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus --- docker/standalone/start-all.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/standalone/start-all.sh b/docker/standalone/start-all.sh index 561ad386..f17fd021 100755 --- a/docker/standalone/start-all.sh +++ b/docker/standalone/start-all.sh @@ -111,6 +111,7 @@ fi if [ "$ENABLE_CP" = "true" ]; then echo "🎛️ Starting Control Plane..." cd /app/control-plane + export HOSTNAME="${HINDSIGHT_CP_HOSTNAME:-0.0.0.0}" PORT="${HINDSIGHT_CP_PORT:-9999}" node server.js & CP_PID=$! PIDS+=($CP_PID)