diff --git a/docs/index.html b/docs/index.html index c1128d3..96071f5 100644 --- a/docs/index.html +++ b/docs/index.html @@ -248,6 +248,15 @@ .t-comment { color: var(--text-t); } .t-cmd { color: var(--text-s); } .t-cmd::before { content: '$ '; color: var(--accent); } + /* ══════════════ Deploy Guides ══════════════ */ + .deploy-grid { display: flex; flex-direction: column; gap: 24px; } + .deploy-card { border-radius: 16px; border: 1px solid var(--border); background: var(--bg-card); backdrop-filter: blur(8px); padding: 28px; transition: all 0.3s; } + .deploy-card:hover { border-color: var(--border-h); } + .deploy-card-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; } + .deploy-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } + .deploy-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; } + .deploy-desc { font-size: 14px; color: var(--text-s); } + /* ══════════════ Ecosystem ══════════════ */ .eco-list { display: flex; flex-direction: column; gap: 16px; } .eco-card { display: flex; align-items: center; justify-content: space-between; border-radius: 16px; border: 1px solid var(--border); background: var(--bg-card); backdrop-filter: blur(8px); padding: 24px; transition: all 0.3s; } @@ -390,6 +399,7 @@ 功能预览 架构 开始 + 部署 社区 下载 GitHub @@ -413,6 +423,7 @@ 功能预览 架构 开始 + 部署 社区 GitHub ↗ @@ -666,6 +677,85 @@ + +
+
+
+
+

服务器 部署指南

+

不用桌面环境,在 Linux 服务器或 Docker 上一键部署 OpenClaw Gateway

+
+
+ +
+
+
+ +
+
+

Linux 一键部署

+

支持 Ubuntu、Debian、CentOS、Fedora、Alpine 等主流发行版

+
+
+
+
+ + bash +
+
+
# 一键安装 Node.js + OpenClaw + systemd 自启
+
curl -fsSL https://raw.githubusercontent.com/qingchencloud/clawpanel/main/scripts/linux-deploy.sh | bash
+
+
+
+ + + 完整教程 + + Node.js 安装 · 配置模型 · systemd/PM2 · Nginx 反代 · 防火墙 +
+
+ +
+
+
+ +
+
+

Docker 部署

+

容器化隔离,支持 Compose 编排、Nginx 反代、Ollama 联动

+
+
+
+
+ + bash +
+
+
# 一条命令启动 Gateway
+
docker run -d --name openclaw --restart unless-stopped \
+
-p 18789:18789 -v openclaw-data:/root/.openclaw \
+
node:22-slim sh -c "npm i -g @qingchencloud/openclaw-zh && openclaw gateway start"
+
+
+
+ + + 完整教程 + + Compose · Dockerfile · 模型配置 · Ollama · 多实例 +
+
+
+
+

+ + 部署完成后,访问 http://服务器IP:18789 即可使用。支持任何兼容 OpenAI API 的客户端连接。 +

+
+
+
+