Update sidebar labels and add docker logs

This commit is contained in:
akhisud3195 2025-04-03 19:33:01 +05:30
parent bcb686a20d
commit 6236bc68e9
2 changed files with 4 additions and 4 deletions

View file

@ -89,7 +89,7 @@ services:
build:
context: ./apps/rowboat
dockerfile: scripts.Dockerfile
command: ["npm", "run", "setupQdrant"]
command: ["sh", "-c", "npm run setupQdrant && echo 'index created successfully'"]
profiles: [ "setup_qdrant" ]
environment:
- QDRANT_URL=${QDRANT_URL}
@ -100,7 +100,7 @@ services:
build:
context: ./apps/rowboat
dockerfile: scripts.Dockerfile
command: ["npm", "run", "deleteQdrant"]
command: ["sh", "-c", "npm run deleteQdrant && echo 'index deleted successfully'"]
profiles: [ "delete_qdrant" ]
environment:
- QDRANT_URL=${QDRANT_URL}