10 lines
284 B
Bash
Executable File
10 lines
284 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
ROOT=$(CDPATH= cd -- "$(dirname -- "$0")/.." && pwd)
|
|
cd "$ROOT"
|
|
CODEX_SESSION_ID=${CODEX_SESSION_ID:-${CODEX_THREAD_ID:-not-configured}}
|
|
export CODEX_SESSION_ID
|
|
docker compose -p who_need_help up -d --build --wait
|
|
"$ROOT/scripts/verify-realtime-cluster.sh" compose
|