cd9c0c51f9463d768c5eecdec14cb7c9aaf66cf7
braney
  Fri May 29 17:28:10 2026 -0700
Docker QA instances on hgwdev (tip/beta/rel): lifecycle scripts + autoBuild wiring, refs #37655

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

diff --git src/utils/qa/weeklybld/stop-all.sh src/utils/qa/weeklybld/stop-all.sh
new file mode 100755
index 00000000000..2aa42c6ffb9
--- /dev/null
+++ src/utils/qa/weeklybld/stop-all.sh
@@ -0,0 +1,15 @@
+#!/bin/bash
+#
+# stop-all.sh - stop all running docker browser containers (tip, beta, rel).
+# A manually stopped container stays stopped across daemon restarts; use
+# start-all.sh to bring them back.
+# refs #37655
+#
+set -eu
+
+for name in tip beta rel; do
+    c="kent-$name"
+    if docker container inspect "$c" >/dev/null 2>&1; then
+        docker stop "$c" >/dev/null && echo "stopped $c"
+    fi
+done