- CHANGELOG: add v0.23 Sprint 21 entry (mobile + Docker) - SPRINTS: Sprint 21 marked COMPLETED, footer updated - index.html: version label v0.22 -> v0.23 - docker-compose.yml: bind to 127.0.0.1 by default (SEC-1 fix) - README: add security note about Docker port binding Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
23 lines
599 B
YAML
23 lines
599 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
hermes-webui:
|
|
build: .
|
|
ports:
|
|
- "127.0.0.1:8787:8787"
|
|
volumes:
|
|
# Persist session data, settings, and projects across restarts
|
|
- hermes-data:/data
|
|
# Mount hermes-agent for full agent features (optional)
|
|
- ${HERMES_HOME:-${HOME}/.hermes}:/root/.hermes:ro
|
|
environment:
|
|
- HERMES_WEBUI_HOST=0.0.0.0
|
|
- HERMES_WEBUI_PORT=8787
|
|
- HERMES_WEBUI_STATE_DIR=/data
|
|
# Optional: set a password for remote access
|
|
# - HERMES_WEBUI_PASSWORD=your-secret-password
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
hermes-data:
|