本地Docker部署全流程指南
实施本地部署需完成以下关键步骤:
- environmental preparation:安装Docker 20.10+和Docker Compose,建议8GB内存配置
- Code Fetch::
git clone https://github.com/onyx-dot-app/onyx.git
并进入docker_compose目录 - Configuration adjustments(可选):在docker-compose.dev.yml中修改LLM连接配置或通过.env文件添加API密钥
- service activation: Implementation
docker compose -f docker-compose.dev.yml -p onyx-stack up -d
自动拉取镜像 - 访问验证:浏览器访问http://localhost:3000,初次使用需配置LLM密钥
常见问题处理:内存不足需调整Docker资源分配;启动失败可通过docker logs
查看具体容器日志。完整部署通常需要5-15分钟,取决于网络速度和硬件性能。
This answer comes from the articleOnyx: an intelligent AI chat platform that connects enterprise knowledge basesThe