
如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。
只需在 AI 对话中先发送下面这句话即可:
请先完整阅读并严格遵守以下文档中的全部规则与要求:
https://xuanyuan.cloud/agents.md
在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
!https://github.com/ether/etherpad-lite/raw/6085/merge/doc/images/etherpad_demo.gif "Etherpad使用演示"
Etherpad是一款Web实时协作编辑器,可扩展支持数千名并发实时用户,提供完整的数据导出功能,并能在您自己的服务器上运行,完全由您掌控数据。
适用于团队协作编辑、文档共同创作、实时会议记录、多人协作撰稿等场景,尤其适合需要数据私有化和自主管理的组织或个人。
目前正在寻找维护者,并提供部分资金支持。如有兴趣,请联系John McLear。
https://github.com/ether/etherpad-lite/actions/workflows/codeql-analysis.yml/badge.svg?color=%2344b492](https://github.com/ether/etherpad-lite/actions/workflows/codeql-analysis.yml) https://github.com/ether/etherpad-lite/actions/workflows/lint-package-lock.yml/badge.svg?color=%2344b492](https://github.com/ether/etherpad-lite/actions/workflows/lint-package-lock.yml)
https://github.com/ether/etherpad-lite/actions/workflows/backend-tests.yml/badge.svg?color=%2344b492](https://github.com/ether/etherpad-lite/actions/workflows/backend-tests.yml) https://github.com/ether/etherpad-lite/actions/workflows/load-test.yml/badge.svg?color=%2344b492](https://github.com/ether/etherpad-lite/actions/workflows/load-test.yml) https://github.com/ether/etherpad-lite/actions/workflows/rate-limit.yml/badge.svg?color=%2344b492](https://github.com/ether/etherpad-lite/actions/workflows/rate-limit.yml) https://github.com/ether/etherpad-lite/actions/workflows/dockerfile.yml/badge.svg?color=%2344b492](https://github.com/ether/etherpad-lite/actions/workflows/dockerfile.yml) https://github.com/ether/etherpad-lite/actions/workflows/frontend-admin-tests.yml/badge.svg?color=%2344b492](https://github.com/ether/etherpad-lite/actions/workflows/frontend-admin-tests.yml) https://github.com/ether/etherpad-lite/actions/workflows/frontend-tests.yml/badge.svg?color=%2344b492](https://github.com/ether/etherpad-lite/actions/workflows/frontend-tests.yml) https://saucelabs.com/buildstatus/etherpad.svg](https://saucelabs.com/u/etherpad) https://github.com/ether/etherpad-lite/actions/workflows/windows.yml/badge.svg?color=%2344b492](https://github.com/ether/etherpad-lite/actions/workflows/windows.yml)
https://img.shields.io/docker/pulls/etherpad/etherpad?color=%2344b492](https://hub.docker.com/r/etherpad/etherpad) https://img.shields.io/***/741309013593030667?color=%2344b492]([] https://img.shields.io/endpoint?url=https%3A%2F%2Fstatic.etherpad.org%2Fshields.json&color=%2344b492 "Etherpad插件"]([] !https://img.shields.io/static/v1?label=Languages&message=105&color=%2344b492 !https://img.shields.io/static/v1?label=Languages&message=98%25&color=%2344b492
bashdocker run -d -p 9001:9001 --name etherpad etherpad/etherpad
yamlversion: '3' services: etherpad: image: etherpad/etherpad container_name: etherpad ports: - "9001:9001" volumes: - ./etherpad_data:/opt/etherpad-lite/var environment: - NODE_ENV=production - DB_TYPE=sqlite - DB_FILENAME=/opt/etherpad-lite/var/dirty.db restart: unless-stopped
更多详细配置请参考https://github.com/ether/etherpad-lite/blob/6085/merge/doc/docker.adoc
Etherpad通过插件实现高度自定义功能。
!https://github.com/ether/etherpad-lite/raw/6085/merge/doc/images/etherpad_basic.png "基础安装"
!https://github.com/ether/etherpad-lite/raw/6085/merge/doc/images/etherpad_full_features.png "可添加众多插件"
查看完整插件列表:Etherpad插件网站
通过管理界面安装
访问Etherpad管理界面(如:[***]
通过命令行安装
bashcd /path/to/etherpad-lite # --no-save 和 --legacy-peer-deps 参数用于解决npm兼容性问题 npm install --no-save --legacy-peer-deps ep_${插件名称}
运行以下命令安装演示中展示的完整功能插件:
bashnpm install --no-save --legacy-peer-deps \ ep_align \ ep_comments_page \ ep_embedded_hyperlinks2 \ ep_font_color \ ep_headings2 \ ep_markdown \ ep_webrtc
身份认证推荐插件
Etherpad核心配置文件为settings.json,支持通过命令行参数指定不同配置文件:
bashsrc/bin/run.sh --settings /path/to/custom-settings.json
主要配置参数:
--credentials:指定设置覆盖文件--apikey:指定API密钥文件--sessionkey:指定会话密钥文件所有配置参数均可通过环境变量设置,格式为${ENV_VAR}或${ENV_VAR:default_value}。
生产环境建议:
dirtyDB访问以下地址进行皮肤可视化定制:
http://127.0.0.1:9001/p/test#skinvariantsbuilder
!https://github.com/ether/etherpad-lite/raw/6085/merge/doc/images/etherpad_skin_variants.gif "皮肤变体"
Etherpad提供https://github.com/ether/etherpad-lite/wiki/HTTP-API%E7%94%A8%E4%BA%8E%E7%AE%A1%E7%90%86%E6%96%87%E6%A1%A3%E3%80%81%E7%94%A8%E6%88%B7%E5%92%8C%E7%BB%84%EF%BC%8C%E6%8E%A8%E8%8D%90%E4%BD%BF%E7%94%A8https://github.com/ether/etherpad-lite/wiki/HTTP-API-client-libraries%E8%BF%9B%E8%A1%8C%E4%BA%A4%E4%BA%92%E3%80%82API%E7%9A%84OpenAPI%E5%AE%9A%E4%B9%89%E5%8F%AF%E9%80%9A%E8%BF%87%60/api/openapi.json%60%E8%AE%BF%E9%97%AE%E3%80%82
通过https://github.com/ether/etherpad-lite-jquery-plugin%E5%8F%AF%E8%BD%BB%E6%9D%BE%E5%B0%86Etherpad%E5%B5%8C%E5%85%A5%E7%BD%91%E7%AB%99%E3%80%82
http://www.apache.org/licenses/LICENSE-2.0.html
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务