mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-14 07:59:00 +03:00
8cfdf53fe7
# Description Using LangGraph instead of LangChain LCEL to build and run the RAG pipeline, as LangGraph enables greater flexibility and an easier maintainability of complex (agentic) pipelines Completes CORE-175 ## Checklist before requesting a review Please delete options that are not relevant. - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my code - [x] I have commented hard-to-understand areas - [ ] I have ideally added tests that prove my fix is effective or that my feature works - [x] New and existing unit tests pass locally with my changes - [x] Any dependent changes have been merged ## Screenshots (if appropriate): --------- Co-authored-by: Stan Girard <girard.stanislas@gmail.com>
105 lines
2.3 KiB
YAML
105 lines
2.3 KiB
YAML
version: "3.8"
|
|
|
|
services:
|
|
backend-api:
|
|
image: backend-api:latest
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
pull_policy: never
|
|
env_file:
|
|
- .env
|
|
build:
|
|
context: backend
|
|
dockerfile: Dockerfile.dev
|
|
cache_from:
|
|
- backend-api:latest
|
|
args:
|
|
- DEV_MODE=true
|
|
container_name: backend-api
|
|
volumes:
|
|
- ./backend/:/app/
|
|
command: >
|
|
/bin/bash -c "python -m uvicorn quivr_api.main:app --host 0.0.0.0 --log-level info --reload --port 5050"
|
|
restart: always
|
|
ports:
|
|
- 5050:5050
|
|
- 5678:5678 # debug port
|
|
|
|
notifier:
|
|
pull_policy: never
|
|
image: backend-api:latest
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
env_file:
|
|
- .env
|
|
container_name: notifier
|
|
volumes:
|
|
- ./backend/:/app/
|
|
command: >
|
|
/bin/bash -c "python /app/worker/quivr_worker/celery_monitor.py"
|
|
restart: always
|
|
depends_on:
|
|
- redis
|
|
- worker
|
|
|
|
worker:
|
|
pull_policy: never
|
|
image: backend-api:latest
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
env_file:
|
|
- .env
|
|
container_name: worker
|
|
volumes:
|
|
- ./backend/:/app/
|
|
command: >
|
|
/bin/bash -c "python -m celery -A quivr_worker.celery_worker worker -l info -E"
|
|
restart: always
|
|
depends_on:
|
|
- redis
|
|
|
|
redis:
|
|
image: redis:latest
|
|
container_name: redis
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
restart: always
|
|
ports:
|
|
- 6379:6379
|
|
|
|
beat:
|
|
image: backend-api:latest
|
|
pull_policy: never
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
env_file:
|
|
- .env
|
|
container_name: beat
|
|
command: >
|
|
/bin/bash -c "python -m celery -A quivr_worker.celery_worker beat -l info"
|
|
volumes:
|
|
- ./backend/:/app/
|
|
restart: always
|
|
depends_on:
|
|
- redis
|
|
|
|
flower:
|
|
image: backend-api:latest
|
|
pull_policy: never
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
env_file:
|
|
- .env
|
|
container_name: flower
|
|
command: >
|
|
/bin/bash -c "python -m celery -A quivr_worker.celery_worker flower -l info --port=5555"
|
|
volumes:
|
|
- ./backend/:/app/
|
|
restart: always
|
|
depends_on:
|
|
- redis
|
|
- worker
|
|
- beat
|
|
ports:
|
|
- 5555:5555
|