12下一页
返回列表 发布新帖

[交流讨论] Hermes 是按照官方的应用好,还是自己用docker compose 自己部署好玩?

2301 11
发表于 2026-5-7 13:53:58 | 查看全部 阅读模式 IP:–广东–佛山–高明区

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?立即注册

×
也是在看到官方应用上架了Hermes才接触这个agent,以前没有接触Openclaw等agent的经验。从开始安装到现在中度试用了几天,主要办公和收集信息,发现确实很不错,好用。但是官方的应用更新比较慢,现在最新版已经是 v0.12.0 (v2026.4.30),应用商店还是 0.10。Hermes每个版本的更新内容挺多了,还有官方的dashboard对话框,也能很好支持第三方的Web UI。现在这个V0.10的UI,真是个蛋痛,很多信息都看不到。

大家说说你们用的是应用商店的Hermes,还是自己用docker部署的,然后docker部署在镜像更新后,对项目的系统是否有影响,比如skill,记忆库这些。另外如果自己部署,前面所有的模型,skill是不是都要重新设置?

另外,也还有一个奇葩的现象,微信和飞书提同样的问题和任务,有时两者差异极大(大概30%概念)。飞书甚至会因为暴力问题拒绝模型生成图(minimax),微信没有任何问题。询问了豆包原因和解决方法,压根解决不了。大都数说飞书支持好,我使用了直观感觉,除了飞速的UI漂亮,其他都是微信支持好。





评论11

HoEAM9Lv.1绿联NAS社区会员用户 发表于 2026-5-7 15:07:28 | 查看全部 IP:–河南 /全省通用
我是自己部署的  看自己吧
COSMOSLv.1 发表于 2026-5-7 16:25:19 | 查看全部 IP:–贵州–遵义
docker部署自由度高多了,升级也方便。官方那个0.10的UI确实蛋疼,等更新等到花儿都谢了
夏夏子Lv.7绿联NAS社区会员用户 发表于 2026-5-7 16:45:09 | 查看全部 IP:–湖南
如果想追新就自己部署自己升级
docker部署在镜像更新后,对项目的系统没有影响
如果自己部署,可以先把配置文件这些备份
只使用微信的路过,虽然渲染不好看但是极其方便,不需要额外安装软件

yplFre楼主Lv.1 发表于 2026-5-7 17:07:49 | 查看全部 IP:–广东–佛山–高明区
看来自己部署是主流啊。现在还有一个 Hermes Workspace 的前端UI,类似官方的对接,功能很多。我在Github上看了一下安装,好像要进行SSH对docker进行部署拉取,复制在下面看大家看看能不能成功:

The Docker setup runs both the Hermes Agent gateway and Hermes Workspace together.
Prerequisites
  • Docker
  • Docker Compose
  • Anthropic API Key — Get one here (required for the agent gateway)

Step 1: Configure Environment

git clone https://github.com/outsourc-e/hermes-workspace.git
cd hermes-workspace
cp .env.example .env

Edit .env and add at least one LLM provider key — whichever provider you want hermes-agent to use:
# Pick one (or more). You do NOT need all of these.
# ANTHROPIC_API_KEY=***         # Anthropic
# OPENAI_API_KEY=sk-...                # GPT / o-series
# OPENROUTER_API_KEY=sk-or-v1-...      # OpenRouter (free models available)
# GOOGLE_API_KEY=AIza...               # Gemini

Using Ollama, LM Studio, or another local server? No key needed — just point hermes-agent at your local endpoint via the onboarding flow.
Heads up: hermes-agent needs to be able to reach some model. If you don't configure any provider (API key or local server), chat will fail on first message.

Step 2: Start the Services

docker compose up

This pulls two pre-built images and starts them:
  • hermes-agent → nousresearch/hermes-agent:latest on port 8642
  • hermes-workspace → ghcr.io/outsourc-e/hermes-workspace:latest on port 3000
No local build. First run takes a minute to pull; subsequent starts are instant. Agent state (config, sessions, skills, memory, credentials) persists in the legacy-named claude-data Docker volume, so containers can be recreated without data loss.

Step 3: Access the Workspace

Open http://localhost:3000 and complete the onboarding.
Verify: Check the Docker logs for [gateway] Connected to Hermes Agent — this confirms the workspace successfully connected to the agent.

Building from source
Want to hack on the workspace and have local changes hot-built into the container? Use the dev overlay:
docker compose -f docker-compose.yml -f docker-compose.dev.yml up --build

The base docker-compose.yml stays untouched — the overlay adds a build: block for the hermes-workspace service so the local repo is compiled instead of pulled. The Hermes Agent service still uses the canonical nousresearch/hermes-agent:latest image; if you need a custom agent build, tag it locally and override image: in your own compose.override.yml.

Using a Pre-Built Image (Coolify / Easypanel / Dokploy / Unraid)

Deploying Hermes Workspace to a PaaS or home-lab stack? Pull the image directly from GitHub Container Registry:
ghcr.io/outsourc-e/hermes-workspace:latest

Available tags:
[td]
TagWhat it is
latestLatest main commit (stable; recommended)
v2.0.0Pinned semver tag
main-<sha>Specific commit

Minimal Coolify / Easypanel config:
service: hermes-workspace
image: ghcr.io/outsourc-e/hermes-workspace:latest
port: 3000
env:  
HERMES_API_URL: http://hermes-agent:8642   # point at your gateway  
HERMES_API_TOKEN: ${API_SERVER_KEY}        # if gateway auth is enabled

The image is built for linux/amd64 and linux/arm64. Pair it with either a nousresearch/hermes-agent:latest container (what our docker-compose.yml does by default) or an existing gateway on another host.

梦梦Lv.7绿联NAS社区会员用户 发表于 2026-5-7 22:01:39 来自手机 | 查看全部 IP:–河南 /全省通用
虚拟机好
dengineLv.1 发表于 2026-5-8 06:57:55 来自手机 | 查看全部 IP:–广东–佛山–高明区
梦梦 发表于 2026-5-7 22:01
虚拟机好

梦神好!请教梦神我在虚拟机里安装了Ubuntu server版(桌面版带不动),怎么能和nas实现数据共享或者数据访问呢?
大秦神兵Lv.1 发表于 2026-5-8 09:12:51 | 查看全部 IP:–山东–青岛 /百度云加速节点
我给你推荐个我现在的方案,绿联虚拟机安装Ubuntu server22.04,然后用hermes国内镜像安装命令(官方由于国内网络环境你大概率安装不成功),配置通信微信、飞书之类的,完成后再安装个网页面板hermes-web-ui,这个国人开发的面板,体验很好,更新也很勤快!
梦梦Lv.7绿联NAS社区会员用户 发表于 2026-5-8 22:16:30 来自手机 | 查看全部 IP:–河南 /全省通用
oEt82l 发表于 2026-5-8 06:57
梦神好!请教梦神我在虚拟机里安装了Ubuntu server版(桌面版带不动),怎么能和nas实现数据共享或者数据访 ...

俺不太懂乌班图,不过虚拟机要虚拟桥接才能通
oC9RFILv.1 发表于 2026-5-9 10:49:18 | 查看全部 IP:–山东–青岛 /百度云加速节点
d4300没有虚拟机,不好装呢

评论

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Copyright © 2026 绿联NAS私有云社区 版权所有 All Rights Reserved. 粤公网安备44030002002555号| 粤ICP备12028978号
关灯 在本版发帖
联系技术支持
返回顶部
快速回复 返回顶部 返回列表