Skip to content

[Bug]: Docker with HERMES_UID; permissions issue with Dashboard chat #23402

@mmartial

Description

@mmartial

Bug Description

Attempting to update my Unraid Template (https://github.com/mmartial/unraid-templates/blob/main/templates/hermes-agent.xml) to reflect new guidelines from https://hermes-agent.nousresearch.com/docs/user-guide/docker

I tried to use the Chat feature within a newly started container and encounter permission denied errors.
The container is started using HERMES_UID and HERMES_GID, with a Docker shared volume at /opt/hermes to interface with the Hermes WebUI.

Steps to Reproduce

  1. Simplified Unraid template docker run:
docker run
  -d
  --name='HermesAgent'
  -e TZ="America/New_York"
  -e 'API_SERVER_ENABLED'='true'
  -e 'API_SERVER_HOST'='0.0.0.0'
  -e 'API_SERVER_KEY'='bd3db74dd31a13c4f23c137eca542a1ae76d403d5dc6453926820e9e7b9e28a4'
  -e 'API_SERVER_CORS_ORIGINS'='*'
  -e 'HERMES_DASHBOARD'='true'
  -e 'HERMES_DASHBOARD_HOST'='0.0.0.0'
  -e 'HERMES_DASHBOARD_TUI'='1'
  -e 'HERMES_UID'='99'
  -e 'HERMES_GID'='100'
  -e 'HERMES_HOME'='/home/hermes/.hermes'
  -p '8642:8642/tcp'
  -p '9119:9119/tcp'
  -v '/mnt/user/appdata/hermes-agent/hermes-home':'/home/hermes/.hermes':'rw'
  -v 'hermes_shared_volume':'/opt/hermes':'rw' 'nousresearch/hermes-agent:latest' gateway run
  1. Configure an OpenRouter key
  2. Attempt to use the Chat interface in the Dashboard
  3. Unable to use Chat
Image
  1. Log from docker logs HermesAgent
Changing hermes UID to 99
Changing hermes GID to 100
Fixing ownership of /home/hermes/.hermes to hermes (99)
Dropping root privileges
Syncing bundled skills into ~/.hermes/skills/ ...

Done: 0 new, 0 updated, 87 unchanged. 87 total bundled.
Starting hermes dashboard on 0.0.0.0:9119 (background)
[dashboard]   Hermes Web UI → http://0.0.0.0:9119
┌─────────────────────────────────────────────────────────┐
│           ⚕ Hermes Gateway Starting...                 │
├─────────────────────────────────────────────────────────┤
│  Messaging platforms + cron scheduler                    │
│  Press Ctrl+C to stop                                   │
└─────────────────────────────────────────────────────────┘

WARNING gateway.run: No user allowlists configured. All unauthorized users will be denied. Set GATEWAY_ALLOW_ALL_USERS=true in ~/.hermes/.env to allow open access, or configure platform allowlists (e.g., TELEGRAM_ALLOWED_USERS=your_id).
[dashboard] TUI build failed.
[dashboard] > hermes-tui@0.0.1 build
[dashboard] > npm run build --prefix packages/hermes-ink && tsc -p tsconfig.build.json && npm run build:compile && chmod +x dist/entry.js
[dashboard]
[dashboard]
[dashboard] > @hermes/ink@0.0.1 build
[dashboard] > esbuild src/entry-exports.ts --bundle --platform=node --format=esm --packages=external --outdir=dist
[dashboard]
[dashboard] ✘ [ERROR] Failed to write to output file: open /opt/hermes/ui-tui/packages/hermes-ink/dist/entry-exports.js: permission denied
[dashboard]
[dashboard] 1 error
[dashboard]
[dashboard]   dist/entry-exports.js  418.8kb
[dashboard]
[dashboard] ⚡ Done in 23ms

I also note that the files in /opt/hermes are not owned by 99:100 as expected:

docker exec --user 99:100 -it HermesAgent bash
hermes@bbdb66ceeede:/opt/hermes$ ls -al
total 3140
drwxr-xr-x 1 root  root     1508 May 10 15:43 .
drwxr-xr-x 1 root  root       20 May  9 03:58 ..
-rw-r--r-- 1 10000 10000     609 May 10 15:13 .dockerignore
-rw-r--r-- 1 10000 10000   21610 May 10 15:13 .env.example
-rw-r--r-- 1 10000 10000     193 May 10 15:13 .envrc
-rw-r--r-- 1 10000 10000     120 May 10 15:13 .gitattributes
-rw-r--r-- 1 10000 10000    5743 May 10 15:13 .mailmap
drwxr-xr-x 1 10000 10000      80 May 10 15:43 .plans
drwxr-xr-x 1 root  root       90 May 10 15:43 .playwright
drwxr-xr-x 1 root  root      106 May 10 15:43 .venv
-rw-r--r-- 1 10000 10000    5654 May 10 15:13 Dockerfile
-rw-r--r-- 1 10000 10000    1070 May 10 15:13 LICENSE
-rw-r--r-- 1 10000 10000      87 May 10 15:13 MANIFEST.in
-rw-r--r-- 1 root  root        0 May  9 20:57 README.md
drwxr-xr-x 1 10000 10000     174 May 10 15:43 acp_adapter
drwxr-xr-x 1 10000 10000      36 May 10 15:43 acp_registry
drwxr-xr-x 1 10000 10000    1828 May 10 15:43 agent
drwxr-xr-x 1 10000 10000      20 May 10 15:43 assets
-rw-r--r-- 1 10000 10000   56265 May 10 15:13 batch_runner.py
-rw-r--r-- 1 10000 10000   55068 May 10 15:13 cli-config.yaml.example
-rw-r--r-- 1 10000 10000  588188 May 10 15:13 cli.py
-rw-r--r-- 1 10000 10000     407 May 10 15:13 constraints-termux.txt
drwxr-xr-x 1 10000 10000      60 May 10 15:43 cron
drwxr-xr-x 1 10000 10000     182 May 10 15:43 datagen-config-examples
drwxr-xr-x 1 10000 10000      40 May 10 15:43 docker
-rw-r--r-- 1 10000 10000    3095 May 10 15:13 docker-compose.yml
drwxr-xr-x 1 10000 10000      60 May 10 15:43 docs
drwxr-xr-x 1 10000 10000     342 May 10 15:43 environments
-rw-r--r-- 1 10000 10000    5199 May 10 15:13 flake.lock
-rw-r--r-- 1 10000 10000    1106 May 10 15:13 flake.nix
drwxr-xr-x 1 10000 10000     576 May 10 15:43 gateway
-rwxr-xr-x 1 10000 10000     262 May 10 15:13 hermes
drwxr-xr-x 1 root  root      160 May 10 15:43 hermes_agent.egg-info
-rw-r--r-- 1 10000 10000    5397 May 10 15:13 hermes_bootstrap.py
drwxr-xr-x 1 10000 10000    1844 May 10 15:43 hermes_cli
-rw-r--r-- 1 10000 10000   12918 May 10 15:13 hermes_constants.py
-rw-r--r-- 1 10000 10000   13566 May 10 15:13 hermes_logging.py
-rw-r--r-- 1 10000 10000  122766 May 10 15:13 hermes_state.py
-rw-r--r-- 1 10000 10000    3227 May 10 15:13 hermes_time.py
drwxr-xr-x 1 10000 10000     234 May 10 15:43 locales
-rw-r--r-- 1 10000 10000   31690 May 10 15:13 mcp_serve.py
-rw-r--r-- 1 10000 10000   28449 May 10 15:13 mini_swe_runner.py
-rw-r--r-- 1 10000 10000   37777 May 10 15:13 model_tools.py
drwxr-xr-x 1 10000 10000     260 May 10 15:43 nix
drwxr-xr-x 1 10000 10000    4130 May 10 15:43 node_modules
drwxr-xr-x 1 10000 10000     312 May 10 15:43 optional-skills
-rw-r--r-- 1 10000 10000   94861 May 10 15:13 package-lock.json
-rw-r--r-- 1 10000 10000     783 May 10 15:13 package.json
drwxr-xr-x 1 10000 10000      16 May 10 15:43 packaging
drwxr-xr-x 1 10000 10000      48 May 10 15:43 plans
drwxr-xr-x 1 10000 10000     292 May 10 15:43 plugins
drwxr-xr-x 1 10000 10000      54 May 10 15:43 providers
-rw-r--r-- 1 10000 10000    9186 May 10 15:13 pyproject.toml
-rw-r--r-- 1 10000 10000   16282 May 10 15:13 rl_cli.py
-rw-r--r-- 1 10000 10000  787829 May 10 15:13 run_agent.py
drwxr-xr-x 1 10000 10000     700 May 10 15:43 scripts
-rwxr-xr-x 1 10000 10000   14932 May 10 15:13 setup-hermes.sh
drwxr-xr-x 1 10000 10000     446 May 10 15:43 skills
drwxr-xr-x 1 10000 10000    3354 May 10 15:43 tests
drwxr-xr-x 1 10000 10000     198 May 10 15:43 tinker-atropos
drwxr-xr-x 1 10000 10000    2626 May 10 15:43 tools
-rw-r--r-- 1 10000 10000   12332 May 10 15:13 toolset_distributions.py
-rw-r--r-- 1 10000 10000   28524 May 10 15:13 toolsets.py
-rw-r--r-- 1 10000 10000   65331 May 10 15:13 trajectory_compressor.py
drwxr-xr-x 1 10000 10000     174 May 10 15:43 tui_gateway
drwxr-xr-x 1 10000 10000     366 May 10 15:43 ui-tui
-rw-r--r-- 1 10000 10000   12547 May 10 15:13 utils.py
-rw-r--r-- 1 10000 10000 1086268 May 10 15:13 uv.lock
drwxr-xr-x 1 10000 10000     294 May 10 15:43 web
drwxr-xr-x 1 10000 10000     232 May 10 15:43 website

Expected Behavior

Ability to use Chat

Actual Behavior

Chat Unavailable error in WebUI and TUI build failed and [ERROR] Failed to write to output file: open /opt/hermes/ui-tui/packages/hermes-ink/dist/entry-exports.js: permission denied

Affected Component

Setup / Installation

Messaging Platform (if gateway-related)

N/A (CLI only)

Debug Report

[hermes debug share: log content redacted at upload time. run with --no-redact to disable]
--- hermes dump ---
version:          0.13.0 (2026.5.7) [(unknown)]
os:               Linux 6.12.87-Unraid x86_64
python:           3.13.5
openai_sdk:       2.24.0
profile:          default
hermes_home:      /home/hermes/.hermes
model:            openai/gpt-5.4-nano
provider:         openrouter
terminal:         local

api_keys:
  openrouter           set
  openai               not set
  anthropic            not set
  anthropic_token      not set
  nous                 not set
  google/gemini        not set
  gemini               not set
  glm/zai              not set
  zai                  not set
  kimi                 not set
  minimax              not set
  deepseek             not set
  dashscope            not set
  huggingface          not set
  nvidia               not set
  ai_gateway           not set
  opencode_zen         not set
  opencode_go          not set
  kilocode             not set
  firecrawl            not set
  tavily               not set
  browserbase          not set
  fal                  not set
  elevenlabs           not set
  github               not set

features:
  toolsets:           hermes-cli
  mcp_servers:        0
  memory_provider:    built-in
  gateway:            running (docker (foreground), pid 7)
  platforms:          none
  cron_jobs:          0
  skills:             87

config_overrides:
  agent.max_turns: 60
  display.streaming: True
--- end dump ---


--- agent.log (last 200 lines) ---
2026-05-10 15:43:50,710 INFO hermes_cli.plugins: Plugin 'openai' registered image_gen provider: openai
2026-05-10 15:43:50,713 INFO hermes_cli.plugins: Plugin 'openai-codex' registered image_gen provider: openai-codex
2026-05-10 15:43:50,715 INFO hermes_cli.plugins: Plugin 'xai' registered image_gen provider: xai
2026-05-10 15:43:51,406 INFO hermes_cli.plugins: Plugin discovery complete: 12 found, 8 enabled
2026-05-10 15:43:51,455 INFO hermes_cli.web_server: Mounted plugin API routes: /api/plugins/hermes-achievements/
2026-05-10 15:43:51,517 INFO hermes_cli.web_server: Mounted plugin API routes: /api/plugins/kanban/
2026-05-10 15:43:51,518 WARNING hermes_cli.web_server: Binding to 0.0.0.0 with --insecure — the dashboard has no robust authentication. Only use on trusted networks.
2026-05-10 15:44:00,722 INFO tools.tirith_security: tirith not found — downloading latest release for x86_64-unknown-linux-gnu...
2026-05-10 15:44:00,751 INFO gateway.run: Starting Hermes Gateway...
2026-05-10 15:44:00,751 INFO gateway.run: Session storage: /home/hermes/.hermes/sessions
2026-05-10 15:44:00,756 INFO gateway.run: Agent budget: max_iterations=60 (agent.max_turns from config.yaml, or HERMES_MAX_ITERATIONS from .env, or default 90)
2026-05-10 15:44:00,756 INFO gateway.run: Secret redaction: ENABLED (tool output, logs, and chat responses are scrubbed before delivery)
2026-05-10 15:44:00,768 WARNING gateway.run: No user allowlists configured. All unauthorized users will be denied. Set GATEWAY_ALLOW_ALL_USERS=true in ~/.hermes/.env to allow open access, or configure platform allowlists (e.g., TELEGRAM_ALLOWED_USERS=your_id).
2026-05-10 15:44:00,861 INFO gateway.run: Connecting to api_server...
2026-05-10 15:44:00,867 INFO gateway.platforms.api_server: [Api_Server] API server listening on http://0.0.0.0:8642 (model: hermes-agent)
2026-05-10 15:44:00,871 INFO gateway.run: ✓ api_server connected
2026-05-10 15:44:00,874 INFO gateway.run: Gateway running with 1 platform(s)
2026-05-10 15:44:00,880 INFO gateway.run: Channel directory built: 0 target(s)
2026-05-10 15:44:01,242 INFO tools.tirith_security: cosign not on PATH — installing tirith with SHA-256 verification only (install cosign for full supply chain verification)
2026-05-10 15:44:01,464 INFO tools.tirith_security: tirith installed to /home/hermes/.hermes/bin/tirith (SHA-256 only)
2026-05-10 15:44:01,883 INFO gateway.run: Press Ctrl+C to stop
2026-05-10 15:44:01,889 INFO gateway.run: Cron ticker started (interval=60s)
2026-05-10 15:44:05,339 INFO hermes_cli.plugins: Plugin 'openai' registered image_gen provider: openai
2026-05-10 15:44:05,342 INFO hermes_cli.plugins: Plugin 'openai-codex' registered image_gen provider: openai-codex
2026-05-10 15:44:05,344 INFO hermes_cli.plugins: Plugin 'xai' registered image_gen provider: xai
2026-05-10 15:44:05,915 INFO hermes_cli.plugins: Plugin discovery complete: 12 found, 8 enabled
2026-05-10 15:44:06,695 INFO run_agent: Loaded environment variables from /home/hermes/.hermes/.env
2026-05-10 15:44:06,922 INFO gateway.run: kanban dispatcher: embedded in gateway (interval=60.0s)
2026-05-10 15:45:05,135 INFO run_agent: OpenAI client created (agent_init, shared=True) thread=Thread-5 (_build):23211048224448 provider=openrouter base_url=https://openrouter.ai/api/v1 model=openai/gpt-5.4-nano
2026-05-10 15:45:05,684 INFO agent.auxiliary_client: Vision auto-detect: using main provider openrouter (openai/gpt-5.4-nano)
2026-05-10 15:45:05,729 INFO agent.auxiliary_client: Auxiliary auto-detect: using main provider openrouter (openai/gpt-5.4-nano)
2026-05-10 15:45:07,694 INFO run_agent: Loaded environment variables from /home/hermes/.hermes/.env
2026-05-10 15:45:08,385 INFO hermes_cli.plugins: Plugin 'openai' registered image_gen provider: openai
2026-05-10 15:45:08,387 INFO hermes_cli.plugins: Plugin 'openai-codex' registered image_gen provider: openai-codex
2026-05-10 15:45:08,389 INFO hermes_cli.plugins: Plugin 'xai' registered image_gen provider: xai
2026-05-10 15:45:08,767 INFO hermes_cli.plugins: Plugin discovery complete: 12 found, 8 enabled
2026-05-10 15:45:36,194 INFO run_agent: OpenAI client created (agent_init, shared=True) thread=Thread-9 (_build):23211016181440 provider=openrouter base_url=https://openrouter.ai/api/v1 model=openai/gpt-5.4-nano
2026-05-10 15:45:36,215 INFO agent.auxiliary_client: Auxiliary auto-detect: using main provider openrouter (openai/gpt-5.4-nano)
2026-05-10 15:45:38,156 INFO run_agent: Loaded environment variables from /home/hermes/.hermes/.env
2026-05-10 15:45:38,856 INFO hermes_cli.plugins: Plugin 'openai' registered image_gen provider: openai
2026-05-10 15:45:38,859 INFO hermes_cli.plugins: Plugin 'openai-codex' registered image_gen provider: openai-codex
2026-05-10 15:45:38,860 INFO hermes_cli.plugins: Plugin 'xai' registered image_gen provider: xai
2026-05-10 15:45:39,212 INFO hermes_cli.plugins: Plugin discovery complete: 12 found, 8 enabled
2026-05-10 16:00:04,181 INFO hermes_cli.plugins: Plugin 'openai' registered image_gen provider: openai
2026-05-10 16:00:04,183 INFO hermes_cli.plugins: Plugin 'openai-codex' registered image_gen provider: openai-codex
2026-05-10 16:00:04,185 INFO hermes_cli.plugins: Plugin 'xai' registered image_gen provider: xai
2026-05-10 16:00:04,894 INFO hermes_cli.plugins: Plugin discovery complete: 12 found, 8 enabled
2026-05-10 16:00:04,931 INFO hermes_cli.web_server: Mounted plugin API routes: /api/plugins/hermes-achievements/
2026-05-10 16:00:04,987 INFO hermes_cli.web_server: Mounted plugin API routes: /api/plugins/kanban/
2026-05-10 16:00:04,988 WARNING hermes_cli.web_server: Binding to 0.0.0.0 with --insecure — the dashboard has no robust authentication. Only use on trusted networks.
2026-05-10 16:00:07,238 INFO gateway.run: Starting Hermes Gateway...
2026-05-10 16:00:07,238 INFO gateway.run: Session storage: /home/hermes/.hermes/sessions
2026-05-10 16:00:07,243 INFO gateway.run: Agent budget: max_iterations=60 (agent.max_turns from config.yaml, or HERMES_MAX_ITERATIONS from .env, or default 90)
2026-05-10 16:00:07,243 INFO gateway.run: Secret redaction: ENABLED (tool output, logs, and chat responses are scrubbed before delivery)
2026-05-10 16:00:07,254 WARNING gateway.run: No user allowlists configured. All unauthorized users will be denied. Set GATEWAY_ALLOW_ALL_USERS=true in ~/.hermes/.env to allow open access, or configure platform allowlists (e.g., TELEGRAM_ALLOWED_USERS=your_id).
2026-05-10 16:00:07,345 INFO gateway.run: Connecting to api_server...
2026-05-10 16:00:07,353 INFO gateway.platforms.api_server: [Api_Server] API server listening on http://0.0.0.0:8642 (model: hermes-agent)
2026-05-10 16:00:07,358 INFO gateway.run: ✓ api_server connected
2026-05-10 16:00:07,360 INFO gateway.run: Gateway running with 1 platform(s)
2026-05-10 16:00:07,367 INFO gateway.run: Channel directory built: 0 target(s)
2026-05-10 16:00:08,096 INFO hermes_cli.plugins: Plugin 'openai' registered image_gen provider: openai
2026-05-10 16:00:08,098 INFO hermes_cli.plugins: Plugin 'openai-codex' registered image_gen provider: openai-codex
2026-05-10 16:00:08,100 INFO hermes_cli.plugins: Plugin 'xai' registered image_gen provider: xai
2026-05-10 16:00:08,369 INFO gateway.run: Press Ctrl+C to stop
2026-05-10 16:00:08,376 INFO gateway.run: Cron ticker started (interval=60s)
2026-05-10 16:00:08,667 INFO hermes_cli.plugins: Plugin discovery complete: 12 found, 8 enabled
2026-05-10 16:00:13,401 INFO gateway.run: kanban dispatcher: embedded in gateway (interval=60.0s)
2026-05-10 16:00:15,793 INFO run_agent: Loaded environment variables from /home/hermes/.hermes/.env
2026-05-10 16:00:17,399 INFO run_agent: OpenAI client created (agent_init, shared=True) thread=Thread-3 (_build):23350332069568 provider=openrouter base_url=https://openrouter.ai/api/v1 model=openai/gpt-5.4-nano
2026-05-10 16:00:17,834 INFO agent.auxiliary_client: Vision auto-detect: using main provider openrouter (openai/gpt-5.4-nano)
2026-05-10 16:00:17,902 INFO agent.auxiliary_client: Auxiliary auto-detect: using main provider openrouter (openai/gpt-5.4-nano)
2026-05-10 16:00:19,875 INFO run_agent: Loaded environment variables from /home/hermes/.hermes/.env
2026-05-10 16:00:20,705 INFO hermes_cli.plugins: Plugin 'openai' registered image_gen provider: openai
2026-05-10 16:00:20,707 INFO hermes_cli.plugins: Plugin 'openai-codex' registered image_gen provider: openai-codex
2026-05-10 16:00:20,708 INFO hermes_cli.plugins: Plugin 'xai' registered image_gen provider: xai
2026-05-10 16:00:21,088 INFO hermes_cli.plugins: Plugin discovery complete: 12 found, 8 enabled

--- errors.log (last 100 lines) ---
2026-05-10 15:43:51,518 WARNING hermes_cli.web_server: Binding to 0.0.0.0 with --insecure — the dashboard has no robust authentication. Only use on trusted networks.
2026-05-10 15:44:00,768 WARNING gateway.run: No user allowlists configured. All unauthorized users will be denied. Set GATEWAY_ALLOW_ALL_USERS=true in ~/.hermes/.env to allow open access, or configure platform allowlists (e.g., TELEGRAM_ALLOWED_USERS=your_id).
2026-05-10 16:00:04,988 WARNING hermes_cli.web_server: Binding to 0.0.0.0 with --insecure — the dashboard has no robust authentication. Only use on trusted networks.
2026-05-10 16:00:07,254 WARNING gateway.run: No user allowlists configured. All unauthorized users will be denied. Set GATEWAY_ALLOW_ALL_USERS=true in ~/.hermes/.env to allow open access, or configure platform allowlists (e.g., TELEGRAM_ALLOWED_USERS=your_id).

--- gateway.log (last 100 lines) ---
2026-05-10 15:44:00,751 INFO gateway.run: Starting Hermes Gateway...
2026-05-10 15:44:00,751 INFO gateway.run: Session storage: /home/hermes/.hermes/sessions
2026-05-10 15:44:00,756 INFO gateway.run: Agent budget: max_iterations=60 (agent.max_turns from config.yaml, or HERMES_MAX_ITERATIONS from .env, or default 90)
2026-05-10 15:44:00,756 INFO gateway.run: Secret redaction: ENABLED (tool output, logs, and chat responses are scrubbed before delivery)
2026-05-10 15:44:00,768 WARNING gateway.run: No user allowlists configured. All unauthorized users will be denied. Set GATEWAY_ALLOW_ALL_USERS=true in ~/.hermes/.env to allow open access, or configure platform allowlists (e.g., TELEGRAM_ALLOWED_USERS=your_id).
2026-05-10 15:44:00,861 INFO gateway.run: Connecting to api_server...
2026-05-10 15:44:00,867 INFO gateway.platforms.api_server: [Api_Server] API server listening on http://0.0.0.0:8642 (model: hermes-agent)
2026-05-10 15:44:00,871 INFO gateway.run: ✓ api_server connected
2026-05-10 15:44:00,874 INFO gateway.run: Gateway running with 1 platform(s)
2026-05-10 15:44:00,880 INFO gateway.run: Channel directory built: 0 target(s)
2026-05-10 15:44:01,883 INFO gateway.run: Press Ctrl+C to stop
2026-05-10 15:44:01,889 INFO gateway.run: Cron ticker started (interval=60s)
2026-05-10 15:44:06,922 INFO gateway.run: kanban dispatcher: embedded in gateway (interval=60.0s)
2026-05-10 16:00:07,238 INFO gateway.run: Starting Hermes Gateway...
2026-05-10 16:00:07,238 INFO gateway.run: Session storage: /home/hermes/.hermes/sessions
2026-05-10 16:00:07,243 INFO gateway.run: Agent budget: max_iterations=60 (agent.max_turns from config.yaml, or HERMES_MAX_ITERATIONS from .env, or default 90)
2026-05-10 16:00:07,243 INFO gateway.run: Secret redaction: ENABLED (tool output, logs, and chat responses are scrubbed before delivery)
2026-05-10 16:00:07,254 WARNING gateway.run: No user allowlists configured. All unauthorized users will be denied. Set GATEWAY_ALLOW_ALL_USERS=true in ~/.hermes/.env to allow open access, or configure platform allowlists (e.g., TELEGRAM_ALLOWED_USERS=your_id).
2026-05-10 16:00:07,345 INFO gateway.run: Connecting to api_server...
2026-05-10 16:00:07,353 INFO gateway.platforms.api_server: [Api_Server] API server listening on http://0.0.0.0:8642 (model: hermes-agent)
2026-05-10 16:00:07,358 INFO gateway.run: ✓ api_server connected
2026-05-10 16:00:07,360 INFO gateway.run: Gateway running with 1 platform(s)
2026-05-10 16:00:07,367 INFO gateway.run: Channel directory built: 0 target(s)
2026-05-10 16:00:08,369 INFO gateway.run: Press Ctrl+C to stop
2026-05-10 16:00:08,376 INFO gateway.run: Cron ticker started (interval=60s)
2026-05-10 16:00:13,401 INFO gateway.run: kanban dispatcher: embedded in gateway (interval=60.0s)

Operating System

Unraid (Slackware host)

Python Version

3.13.5 (from container)

Hermes Version

0.13.0 (2026.5.7)

Additional Logs / Traceback (optional)

docker exec --user 99:100 -it HermesAgent bash
hermes@6ebaef4a77c7:/opt/hermes$ source .venv/bin/activate
(hermes-agent) hermes@6ebaef4a77c7:/opt/hermes$ hermes version
Hermes Agent v0.13.0 (2026.5.7)
Project: /opt/hermes
Python: 3.13.5
OpenAI SDK: 2.24.0

Root Cause Analysis (optional)

No response

Proposed Fix (optional)

No response

Are you willing to submit a PR for this?

  • I'd like to fix this myself and submit a PR

Metadata

Metadata

Assignees

No one assigned

    Labels

    P2Medium — degraded but workaround existsarea/dockerDocker image, Compose, packagingcomp/tuiTerminal UI (ui-tui/ + tui_gateway/)sweeper:implemented-on-mainSweeper: behavior already present on current maintype/bugSomething isn't working

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions