Create docker.md

This commit is contained in:
Edwin Jose 2025-09-12 11:57:35 -04:00
parent cc293336a8
commit 696c3d81a0

35
docs/docker.md Normal file
View file

@ -0,0 +1,35 @@
# Docker Deployment
## Standard Deployment
```bash
# Build and start all services
docker compose build
docker compose up -d
```
## CPU-Only Deployment
For environments without GPU support:
```bash
docker compose -f docker-compose-cpu.yml up -d
```
## Force Rebuild
If you need to reset state or rebuild everything:
```bash
docker compose up --build --force-recreate --remove-orphans
```
## Service URLs
After deployment, services are available at:
- Frontend: http://localhost:3000
- Backend API: http://localhost:8000
- Langflow: http://localhost:7860
- OpenSearch: http://localhost:9200
- OpenSearch Dashboards: http://localhost:5601