301_docker本地搭建ChatGPT Next Web
简单介绍(来自GitHub)
1.1 主要功能
1 2 3 4 5 6 7 8 9 10
| 1.1 主要功能 在 1 分钟内使用 Vercel 免费一键部署 精心设计的 UI,响应式设计,支持深色模式 极快的首屏加载速度(~100kb) 海量的内置 prompt 列表,来自中文和英文 自动压缩上下文聊天记录,在节省 Token 的同时支持超长对话 一键导出聊天记录,完整的 Markdown 支持 拥有自己的域名?好上加好,绑定后即可在任何地方无障碍快速访问
https://github.com/PlexPt/awesome-chatgpt-prompts-zh
|
1.2 项目展示
1 2 3
| 演示 Demo: https://chat-gpt-next-web.vercel.app/ 反馈 Issues: https://github.com/Yidadaa/ChatGPT-Next-Web/issues 加入 Discord: https://discord.gg/zrhvHCr79N
|
QQ群:397745473
开始使用Vercel搭建
1 2 3 4 5 6 7 8 9
| 1. 准备好你的 OpenAI API Key. 获取地址: https://platform.openai.com/account/api-keys
2. 点击右侧按钮开始部署: Deploy with Vercel,直接使用 Github 账号登录即可,记得在环境变量页填入 API Key 和页面访问密码 CODE; https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2FYidadaa%2FChatGPT-Next-Web&env=OPENAI_API_KEY&env=CODE&project-name=chatgpt-next-web&repository-name=ChatGPT-Next-Web
3. 部署完毕后,即可开始使用;
4. (可选)绑定自定义域名:Vercel 分配的域名 DNS 在某些区域被污染了,绑定自定义域名即可直连。
|
本地搭建
建立 docker-compose.yaml
1 2 3 4 5 6 7 8 9 10
| version: '3.3' services: chatgpt-next-web: ports: - '8090:3000' environment: - OPENAI_API_KEY=sk-xxxx - CODE=your-password image: yidadaa/chatgpt-next-web
|
获取key: https://platform.openai.com/account/api-keys
启动: docker-compose up -d
注意: 用宝塔的nginx带目录做反代时会出现不成功的现象。直接用ip加端口访问没有问题。
其他参考资料
1 2 3
| https://blog.laoda.de/archives/docker-compose-install-chatgpt-next-web
https://github.com/Yidadaa/ChatGPT-Next-Web/blob/main/README_CN.md
|
QQ群:397745473