forked from NousResearch/hermes-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.windows.yml
More file actions
38 lines (37 loc) · 1.05 KB
/
docker-compose.windows.yml
File metadata and controls
38 lines (37 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#
# docker-compose.windows.yml — Windows Docker Desktop compatible
#
# Differences from docker-compose.yml:
# - Removes `network_mode: host` (not supported on Docker Desktop for Windows)
# - Uses explicit port mappings instead
# - Uses Windows-style volume path for ~/.hermes
#
# Usage:
# docker compose -f docker-compose.windows.yml up -d
#
services:
gateway:
image: nousresearch/hermes-agent:latest
container_name: hermes
restart: unless-stopped
volumes:
- ${USERPROFILE}/.hermes:/opt/data
environment:
- HERMES_UID=10000
- HERMES_GID=10000
command: ["gateway", "run"]
dashboard:
image: nousresearch/hermes-agent:latest
container_name: hermes-dashboard
restart: unless-stopped
depends_on:
- gateway
volumes:
- ${USERPROFILE}/.hermes:/opt/data
environment:
- HERMES_UID=10000
- HERMES_GID=10000
- HERMES_DASHBOARD_HOST=0.0.0.0
ports:
- "127.0.0.1:9119:9119"
command: ["dashboard", "--host", "0.0.0.0", "--port", "9119", "--no-open", "--insecure"]