add qdrant migrate instructions

This commit is contained in:
ramnique 2025-03-10 13:55:01 +05:30
parent 4793313daf
commit 6b5bc23e2e
2 changed files with 32 additions and 0 deletions

View file

@ -69,6 +69,28 @@ services:
- OPENAI_API_KEY=${OPENAI_API_KEY}
restart: unless-stopped
setup_qdrant:
build:
context: ./apps/rowboat
dockerfile: scripts.Dockerfile
command: ["npm", "run", "setupQdrant"]
profiles: [ "setup_qdrant" ]
environment:
- QDRANT_URL=${QDRANT_URL}
- QDRANT_API_KEY=${QDRANT_API_KEY}
restart: no
delete_qdrant:
build:
context: ./apps/rowboat
dockerfile: scripts.Dockerfile
command: ["npm", "run", "deleteQdrant"]
profiles: [ "delete_qdrant" ]
environment:
- QDRANT_URL=${QDRANT_URL}
- QDRANT_API_KEY=${QDRANT_API_KEY}
restart: no
rag_files_worker:
build:
context: ./apps/rowboat