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/start-all.sh src/utils/qa/weeklybld/start-all.sh
new file mode 100755
index 00000000000..f270a23e486
--- /dev/null
+++ src/utils/qa/weeklybld/start-all.sh
@@ -0,0 +1,15 @@
+#!/bin/bash
+#
+# start-all.sh - start the docker browser containers that exist (tip, rel, and
+# beta when present). Use after a manual stop-all; on reboot the containers'
+# --restart=unless-stopped policy brings them back on their own.
+# refs #37655
+#
+set -eu
+
+for name in tip rel beta; do
+    c="kent-$name"
+    if docker container inspect "$c" >/dev/null 2>&1; then
+        docker start "$c" >/dev/null && echo "started $c"
+    fi
+done