Source repository: https://github.com/njzydark/hermes-suite/tree/self-useā Build repository: https://github.com/njzydark/images/tree/mainā
Single Docker/Podman image combining three Hermes services:
| Service | Port | Description |
|---|---|---|
| hermes-gateway | 8642 | Agent gateway (CLI, Telegram, cron, tools) |
| hermes-dashboard | 9119 | Monitoring/analytics dashboard (built-in) |
| hermes-webui | 8787 | Browser-based chat interface |
Pre-built multi-arch images available on Docker Hubā .
š Now with automatic runtime detection. One image works on both Podman and Docker CE out of the box ā no separate builds or flags needed. The container detects its runtime at startup and adjusts automatically. Learn moreā .
šļø Official container images are maintained by Ascensionoid (ascensionoid.comā ).
Podman v3.4.4 cannot share the same UID/GID between multiple containers easily.
The standard multi-container setup (hermes-agent + hermes-webui + hermes-dashboard)
requires each container to run as the same user to share the ~/.hermes volume.
Podman v3.4.4 has limitations with userns_mode: keep-id across multiple containers.
This image solves that by running all three services in one container via supervisord.
+-------------------------------------------------+
| hermes-suite container |
| |
| +-- supervisord (PID 1) --------------------+ |
| | | |
| | [hermes-gateway] port 8642 | |
| | hermes gateway run | |
| | | |
| | [hermes-dashboard] port 9119 | |
| | hermes dashboard --host 0.0.0.0 | |
| | | |
| | [hermes-webui] port 8787 | |
| | python server.py | |
| | | |
| +-------------------------------------------+ |
| |
| /opt/data <-- mounted from ~/.hermes |
+-------------------------------------------------+
To ensure stability on edge devices (Jetson, ARM boards), it is highly recommended
to use pinned versions rather than building from the main branch HEAD.
If you prefer not to build manually, use our pre-verified image tags from Docker Hubā :
podman pull ascensionoid/hermes-suite:2026.6.19-0.51.742
If you need a specific combination, pass the versions as build arguments:
podman build \
--build-arg AGENT_VERSION=v2026.6.19 \
--build-arg HERMES_WEBUI_VERSION=v0.51.742 \
-t hermes-suite:2026.6.19-0.51.742 .
Or use the build helper (reads from versions.env):
# Podman or Docker (auto-detected at container startup)
./build.sh
# Build with Docker explicitly
./build.sh --docker
# Docker without logs (optional)
./build.sh --docker-nolog
# Override defaults:
# ./build.sh --agent v2026.6.19 --webui v0.51.742
If Hermes will use an external browser CDP endpoint, you can build without local Playwright Chromium:
./build.sh --skip-chromium
Docker compatibility: Docker CE is auto-detected at container startup via /proc/1/cgroup. The universal image works on both Podman and Docker out of the box. Use
--docker-nologonly if you prefer no log output. Set CONTAINER_RUNTIME in versions.env to control which runtime helper scripts use.
Hermes supports BROWSER_CDP_URL for remote browser control. Point it at an
already-running browser CDP endpoint:
environment:
- BROWSER_CDP_URL=http://browser-cdp:9222
This mode assumes the CDP endpoint is reachable without extra HTTP authentication
headers. If the endpoint requires a bearer token, place an authenticating reverse
proxy in front of it and set BROWSER_CDP_URL to the proxy URL.
Set the CDP URL at runtime:
export BROWSER_CDP_URL=http://browser-cdp:9222
./up.sh
If you do not set BROWSER_CDP_URL, Hermes keeps its normal local browser
behavior. Build with local Playwright Chromium unless you know every browser
request will use a remote CDP endpoint.
Every release is an explicitly tested pair of Agent + WebUI on both amd64 and arm64.
| Suite Tag | Agent Version | WebUI Version | Tested |
|---|---|---|---|
2026.6.19-0.51.742 | v2026.6.19 | v0.51.742 | amd64 + arm64 |
Full version history: https://github.com/sunnysktsang/hermes-suite/releasesā
Suite tags follow the pattern {agent_date}-{webui_semver}:
nousresearch/hermes-agent (e.g. v2026.6.19)nesquena/hermes-webui (e.g. v0.51.742)The pinned pair for each release is declared in versions.env.
git clone https://github.com/sunnysktsang/hermes-suite.git
cd hermes-suite
chmod +x *.sh
./build.sh
Or manually with pinned versions:
podman build \
--build-arg AGENT_VERSION=v2026.6.19 \
--build-arg HERMES_WEBUI_VERSION=v0.51.742 \
-t ascensionoid/hermes-suite:2026.6.19-0.51.742 .
podman network create --subnet 10.99.0.0/24 agent_net
./up.sh
Or manually:
podman-compose up -d
Edit ~/.hermes/.env to add your API keys, and ~/.hermes/config.yaml for model settings.
These files are shared from the host via the volume mount. On first run, defaults are
created automatically from the hermes-agent examples.
All configuration is stored in ~/.hermes/ on the host (mounted as /opt/data inside
the container). On first start, the entrypoint script copies default .env and
config.yaml from the hermes-agent examples if they don't already exist.
~/.hermes/
.env ā API keys (OPENAI_API_KEY, TELEGRAM_TOKEN, etc.)
config.yaml ā Model, toolsets, agent settings
SOUL.md ā Agent personality
skills/ ā Custom skills
memories/ ā Persistent memory
webui/ ā WebUI state (sessions, workspace)
./down.sh
./logs.sh
All service logs stream to stdout/stderr (visible via podman logs). Supervisord
also writes to /var/log/supervisor/ inside the container:
podman exec hermes-suite supervisorctl status
Edit versions.env to change the pinned versions and runtime settings:
AGENT_VERSION=v2026.6.19
WEBUI_VERSION=v0.51.742
# Runtime selector: auto (default), podman, docker, docker-nolog
CONTAINER_RUNTIME=auto
# Use sudo for commands (rootful mode): true, false
USE_SUDO=false
# Include WhatsApp bridge: true, false (default: false)
ENABLE_WHATSAPP_BRIDGE=false
| Setting | Options | Default | Description |
|---|---|---|---|
CONTAINER_RUNTIME | auto, podman, docker, docker-nolog | auto | Which runtime helper scripts use. auto detects at script time. |
USE_SUDO | true, false | false | Run docker/podman commands with sudo (rootful mode) |
ENABLE_WHATSAPP_BRIDGE | true, false | false | Include WhatsApp bridge in the built image |
Then rebuild:
./build.sh
Or override at build time:
./build.sh --agent v2026.4.16 --webui v0.50.244
The WhatsApp bridge is not included in the image by default. This is intentional:
To include the WhatsApp bridge at build time:
# Option 1: CLI flag
./build.sh --whatsapp
# Option 2: Set in versions.env
ENABLE_WHATSAPP_BRIDGE=true
./build.sh
Warning: If you enable the WhatsApp bridge, you must configure
WHATSAPP_ALLOWED_USERSin~/.hermes/.envbefore starting the gateway. Without this setting, the bridge denies all incoming messages by default.
Edit the volumes section in docker-compose.yaml:
volumes:
- ~/workspace:/workspace:z # change ~/workspace to your project directory
If you are currently running the multi-container setup (hermes-agent + hermes-webui):
Stop the existing containers.
Build and start hermes-suite:
cd hermes-suite
./build.sh
./up.sh
Your existing ~/.hermes/ data is reused automatically ā no migration needed.
Rootless Podman:
The container runs as UID 10000, which maps to a host UID (e.g. 109999) per /etc/subuid.
Fix ownership on the host:
sudo chown -R 109999:109999 ~/.hermes
Rootful Podman or Docker:
Ownership is auto-corrected on startup. If issues persist:
sudo chown -R 10000:10000 ~/.hermes
Check that the webui venv was built correctly:
podman exec hermes-suite /opt/hermes-webui/venv/bin/python -c "import yaml; print('OK')"
This should not occur with the auto-detection feature (v2026.5.16-0.51.137+). The container detects Docker at startup and adjusts the privilege model automatically. Ensure you are using a recent image.
If it still occurs, ensure tty: true is NOT set in docker-compose.yaml.
The dashboard needs the gateway running first. Check supervisord status:
podman exec hermes-suite supervisorctl status
Ensure the build host has network access. The hermes-webui repo is cloned at build
time. If your build environment has no internet, pre-clone the webui repo and adjust
the Dockerfile to COPY it instead of git clone.
uv venv or pip not foundThe Dockerfile uses uv (pre-installed in the hermes-agent base image) to create
virtual environments and install packages. If you change the base image, ensure uv
is available at /usr/local/bin/uv.
The Dockerfile performs these steps:
Base image ā Uses the official nousresearch/hermes-agent image which already
contains Python 3.13, Node.js, npm, Playwright, the agent code, and the built-in
dashboard.
System packages ā Installs sudo, git, nano, network tools, and other utilities.
Browser tools ā Installs Playwright Chromium for the browser toolset.
Supervisor ā Installs supervisord via pip into a dedicated venv at /opt/supervisor
(not available in Debian Trixie apt repos).
Hermes WebUI ā Clones from GitHub and installs into a separate venv at
/opt/hermes-webui/venv, along with the agent's Python dependencies so the WebUI
can import agent modules.
Entrypoint ā start.sh handles UID/GID remapping (for rootless Podman),
directory setup, and config bootstrapping before launching supervisord.
hermes-suite/
Dockerfile ā Build definition (parameterized AGENT_VERSION + HERMES_WEBUI_VERSION)
versions.env ā Pinned component versions for current release
supervisord.conf ā Process manager config (3 services)
start.sh ā Container entrypoint (UID setup + launch)
docker-compose.yaml ā Podman/Docker Compose configuration
build.sh ā Build helper script (reads versions.env)
up.sh ā Start helper script
down.sh ā Stop helper script
logs.sh ā Log viewer helper script
.dockerignore ā Build context exclusions
.env.example ā Environment variable template
README.md ā This file
| Platform | Arch | OS | Runtime | Status |
|---|---|---|---|---|
| x86_64 (WSL2) | amd64 | Ubuntu 22.04 | Podman 3.4.4 | All 3 services running |
| x86_64 (WSL2) | amd64 | Ubuntu 22.04 | Docker CE 29.4.2 | All 3 services running |
| Jetson Orin NX 16GB | arm64 | Ubuntu 22.04 | Podman 3.4.4 | All 3 services running |
The base image nousresearch/hermes-agent provides multi-architecture manifests (amd64 + arm64).
Podman and Docker automatically pull the correct variant for your platform.
No changes to the Dockerfile are needed ā it builds identically on both architectures.
This project is licensed under the MIT License. The individual components are licensed separately:
Thanks to nesquenaā for building hermes-webui and referencing this projectā in the official Docker docs.
If this project helps you, consider giving it a ā on GitHubā ā it helps others find it and keeps the project maintained.
![]()
Content type
Image
Digest
sha256:d341f983cā¦
Size
1.3 GB
Last updated
2 months ago
docker pull njzy/hermes-suite