From d446d67995e0ab9a12289c2320b23fc5b3d29769 Mon Sep 17 00:00:00 2001 From: Hermes Date: Wed, 20 May 2026 14:03:27 -0400 Subject: [PATCH] feat: add dashboard env vars and combined healthcheck to hermes service Add HERMES_DASHBOARD=1, HERMES_DASHBOARD_HOST=0.0.0.0, HERMES_DASHBOARD_PORT=9119 env vars to the hermes service to enable the built-in dashboard API on port 9119. Add combined healthcheck verifying /health (API server, port 8642) and /api/status (dashboard, port 9119) endpoints. --- ai/compose.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ai/compose.yml b/ai/compose.yml index 1db7831..51fe186 100644 --- a/ai/compose.yml +++ b/ai/compose.yml @@ -52,6 +52,10 @@ services: - ROCR_VISIBLE_DEVICES=0,1 - HSA_ENABLE_SDMA=0 - TZ=America/Montreal + # Hermes Workspace dashboard (port 9119) — enables multi-agent web UI + - HERMES_DASHBOARD=1 + - HERMES_DASHBOARD_HOST=0.0.0.0 + - HERMES_DASHBOARD_PORT=9119 volumes: - /mnt/HoardingCow_docker_data/Hermes/data:/opt/data # Syncthing-shared org files — read-only view of user's agenda @@ -66,6 +70,12 @@ services: - "26" networks: - ai_backend + healthcheck: + test: ["CMD-SHELL", "curl -fsS http://localhost:8642/health && curl -fsS http://localhost:9119/api/status || exit 1"] + interval: 15s + timeout: 5s + retries: 5 + start_period: 60s syncthing: image: syncthing/syncthing:latest