Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
hermes_installation_on_windows_11 [29 June 2026 / 16:54:27] kadekhermes_installation_on_windows_11 [09 July 2026 / 18:44:46] (current) kadek
Line 34: Line 34:
 Paste the following: Paste the following:
  
-  services: +services
-    hermes: +  hermes-cli
-      image: nousresearch/hermes-agent:latest +    image: nousresearch/hermes-agent:latest 
-      container_name: hermes +    container_name: hermes-cli 
-   +    stdin_open: true 
-      restart: unless-stopped +    tty: true 
-   +    volumes
-      volumes: +      - C:\Users\YourUsername\hermes-data:/opt/data 
-        - C:\Users\KdeK\hermes-data:/opt/data +  hermes-gateway: 
-   +    image: nousresearch/hermes-agent:latest 
-      stdin_opentrue +    container_name: hermes-gateway 
-      ttytrue+    command: gateway run 
 +    restart: unless-stopped 
 +    volumes: 
 +      - C:\Users\YourUsername\hermes-data:/opt/data 
 +  hermes-dashboard: 
 +    image: nousresearch/hermes-agent:latest 
 +    container_name: hermes-dashboard 
 +    command: dashboard --host 0.0.0.0 --port 9119 --no-open 
 +    restart: unless-stopped 
 +    ports: 
 +      - "9119:9119" 
 +    volumes
 +      - C:\Users\YourUsername\hermes-data:/opt/data
  
 === #5 Configure the Environment Variables === === #5 Configure the Environment Variables ===
Line 74: Line 86:
 === #7 Verify Hermes === === #7 Verify Hermes ===
  
-View the logs:+View the logs for Gateway & Dashboard:
  
-  docker logs -f hermes +  docker logs hermes-gateway --tail 10 
- +  docker logs hermes-dashboard --tail 10
-A successful startup should display messages similar to: +
- +
-  Starting Hermes Gateway... +
-  Connecting to telegram... +
-  Connected to Telegram +
-  Gateway running +
- +
-Press Ctrl+C to stop viewing the logs+
-This does not stop Hermes.+
  
 === #8 Pair Telegram === === #8 Pair Telegram ===
Line 116: Line 119:
   cd C:\Users\YourUsername\hermes-data   cd C:\Users\YourUsername\hermes-data
   docker compose up -d   docker compose up -d
 +
 +A successful startup should display messages similar to:
 +
 +  PS C:\Users\YourUsername\hermes-data> docker compose up -d
 +  [+] up 4/4
 +   ✔ Network hermes-data_default Created                                                                              0.0s
 +   ✔ Container hermes-gateway    Started                                                                              0.6s
 +   ✔ Container hermes-cli        Started                                                                              0.6s
 +   ✔ Container hermes-dashboard  Started                                                                              0.8s
  
 Hermes, the Dashboard, and the Telegram Gateway will start automatically. Hermes, the Dashboard, and the Telegram Gateway will start automatically.
 +Access the dashboard via this URL: http://localhost:9119
  
 === Daily Shutdown === === Daily Shutdown ===