From f316fb750297f5482089deff14bb50049b3c1c7a Mon Sep 17 00:00:00 2001 From: Nathan Esquenazi Date: Sun, 12 Apr 2026 13:46:59 -0700 Subject: [PATCH] fix: add missing workspace volume to two-container compose (#326) docker-compose.two-container.yml was missing the ~/workspace:/workspace volume mount that the single-container compose already has. Without it the workspace directory inside the container is ephemeral and the user can't browse their actual files. Fixes #326 Co-Authored-By: Claude Opus 4.6 (1M context) --- docker-compose.two-container.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker-compose.two-container.yml b/docker-compose.two-container.yml index e4f7800..7cda227 100644 --- a/docker-compose.two-container.yml +++ b/docker-compose.two-container.yml @@ -39,6 +39,9 @@ services: # uv pip install /home/hermeswebui/.hermes/hermes-agent # which installs the agent and all its Python dependencies. - hermes-agent-src:/home/hermeswebui/.hermes/hermes-agent + # Workspace directory — browse and edit files from the WebUI. + # Adapt the host path to your project directory. + - ~/workspace:/workspace environment: - HERMES_WEBUI_HOST=0.0.0.0 - HERMES_WEBUI_PORT=8787