Files
appstore/apps/hermes-dashboard/latest/docker-compose.yml
T
okxlin 87843f7c77 Fix Hermes 2026.7.20 runtime security
Enable and protect the gateway API, replace the removed dashboard insecure mode with Basic Auth, preserve old-user settings through idempotent upgrade migrations, and refresh the app documentation.
2026-07-21 21:24:04 +08:00

31 lines
809 B
YAML
Executable File

services:
hermes-dashboard:
image: "nousresearch/hermes-agent:latest"
container_name: ${CONTAINER_NAME}
command:
- dashboard
- --host
- 0.0.0.0
- --no-open
environment:
- TZ=${TZ}
- HERMES_UID=${HERMES_UID:-10000}
- HERMES_GID=${HERMES_GID:-10000}
- GATEWAY_HEALTH_URL=${GATEWAY_HEALTH_URL}
- HERMES_DASHBOARD_BASIC_AUTH_USERNAME=${DASHBOARD_USERNAME}
- HERMES_DASHBOARD_BASIC_AUTH_PASSWORD=${DASHBOARD_PASSWORD}
- HERMES_DASHBOARD_BASIC_AUTH_SECRET=${DASHBOARD_SESSION_SECRET}
ports:
- "${PANEL_APP_PORT_HTTP}:9119"
volumes:
- "${APP_DATA_DIR}:/opt/data"
restart: unless-stopped
networks:
- 1panel-network
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true