使用Docker Compose本地部署时需特别注意:
- hardware requirement::
- 最低配置:2核CPU/4GB内存(仅基础功能)
- 推荐配置:4核CPU/8GB内存(含向量数据库支持)
- Data persistence:默认Postgres数据会随容器销毁,需在
docker-compose.yml
中配置volume挂载 - 关键端口::
- 3000:Web管理界面
- 8080:API服务端口
- 初始化流程::
- 首次访问
http://localhost:3000
需创建管理员账号 - 必须在UI中生成SDK密钥,不能直接修改数据库
- 首次访问
- Debugging Tips: Run
docker compose logs -f
可实时查看各服务日志
对于长期使用的开发环境,建议配置定时数据库备份脚本。
This answer comes from the articleLangfuse: an open source LLM application observation and debugging platformThe