February 2026

基于docker搭建octopus图文教程

1. 前言 本文基于octopus v0.9.18版本,Github地址为 https://github.com/bestruirui/octopus octopus 是一个聚合API项目,能够将其它免费或付费 API 接入,并统一到一个API接口,从而方便供给OpenClaw或其它客户端使用 该项目偏向于个人化使用场景,并且比较偏向 模型 的聚合,适合同一个模型有多个中转站或者某个渠道有多个官网账号的人使用 2. 搭建 首先选择一个目录,本文中使用的是 /data/octopus ,先在该目录下创建 compose.yaml 文件 复制以下 docker compose 配置(8080端口太常见容易被占用所以这里我改成了8780,可自行修改为其它端口) services: octopus: image: bestrui/octopus ports: - '8780:8080'…

基于docker搭建CLIProxyAPI图文教程

1. 前言 本文基于CLIProxyAPI v6.8.24版本,Github地址为 https://github.com/router-for-me/CLIProxyAPI CLIProxyAPI 能够将 GeminiCLI , ClaudeCode 等转换为不仅限于原客户端使用的API,从而供给OpenClaw或其它客户端使用 2. 搭建 首先选择一个目录,本文中使用的是/data/CLIProxyAPI 运行 mkdir -p /data/CLIProxyAPI && touch /data/CLIProxyAPI/config.yaml ,创建项目配置文件 复制以下项目配置,将 secret-key 修改为你的密码 # Server host/interface to bind…