higress-group.github.io icon indicating copy to clipboard operation
higress-group.github.io copied to clipboard

添加通过docker compose来启动higress 和 redis的文档支持

Open lilongthinker opened this issue 6 months ago • 7 comments

添加通过docker compose来启动higress 和 redis的文档支持

简化启动步骤、减少文件的修改,提高按照文档执行的成功率

lilongthinker avatar May 09 '25 16:05 lilongthinker

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

CLAassistant avatar May 09 '25 16:05 CLAassistant

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

CLAassistant avatar May 09 '25 16:05 CLAassistant

新增 MCP Server Docker Compose 快速启动文档及配置指南

变更文件

文件路径 变更说明
src/​content/​ai/​mcp-quick-start_docker_compose​.md 创建完整指导文档,包含部署步骤、配置细节、使用示例和故障排查

时序图

sequenceDiagram
    participant User as 用户
    participant Docker as Docker Compose
    participant Higress as Higress Gateway
    participant Redis as Redis Service
    participant Cherry as AI Agent

    User->>Docker: 执行docker-compose up
    Docker->>Higress: 启动网关容器
    Docker->>Redis: 启动Redis容器
    User->>Higress: 配置ConfigMap参数
    User->>Higress: 配置路由和MCP插件
    Higress->>Redis: 验证Redis连接
    User->>Cherry: 集成MCP服务
    Cherry->>Higress: 发起SSE请求
    Higress->>Redis: 维护会话数据
    Higress->>ExternalAPI: 转发REST请求
    ExternalAPI-->>Higress: 返回响应数据
    Higress-->>Cherry: 推送处理结果

💡 小贴士

与 lingma-agents 交流的方式

📜 直接回复评论 直接回复本条评论,lingma-agents 将自动处理您的请求。例如:

  • 在当前代码中添加详细的注释说明。

  • 请详细介绍一下你说的 LRU 改造方案,并使用伪代码加以说明。

📜 在代码行处标记 在文件的特定位置创建评论并 @lingma-agents。例如:

  • @Lingma-Agent 分析这个方法的性能瓶颈并提供优化建议。

  • @Lingma-Agent 对这个方法生成优化代码。

📜 在讨论中提问 在任何讨论中 @lingma-agents 来获取帮助。例如:

  • @Lingma-Agent 请总结上述讨论并提出解决方案。

  • @Lingma-Agent 请根据讨论内容生成优化代码。

lingma-agents[bot] avatar May 09 '25 16:05 lingma-agents[bot]

这个 Docker Compose 版容易被人误以为是 Higress 的 Docker Compose 运行模式。感觉把这个文档合并到现有的 Docker 版文档里更好一点。

CH3CHO avatar May 10 '25 00:05 CH3CHO

这个 Docker Compose 版容易被人误以为是 Higress 的 Docker Compose 运行模式。感觉把这个文档合并到现有的 Docker 版文档里更好一点。

可以,我直接在原来的文件上改好了,我重新弄下

lilongthinker avatar May 10 '25 03:05 lilongthinker

是不是可以参考官网上的快速开始,让用户在安装的时候可以选择使用单独启动的 Redis,也可以使用 Docker Compose 的 Redis 呢?你觉得如何?

https://higress.cn/docs/latest/user/quickstart/?spm=36971b57.2ef5001f.0.0.2a932c1fhVubAh

CH3CHO avatar May 10 '25 03:05 CH3CHO

是不是可以参考官网上的快速开始,让用户在安装的时候可以选择使用单独启动的 Redis,也可以使用 Docker Compose 的 Redis 呢?你觉得如何?

https://higress.cn/docs/latest/user/quickstart/?spm=36971b57.2ef5001f.0.0.2a932c1fhVubAh

这个就是快速启动,生产环境的配置肯定要比这个严格(考虑高可用等问题),还是以少犯错,能快速跑起来为主吧

lilongthinker avatar May 10 '25 03:05 lilongthinker