File size: 722 Bytes
b7064d3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
version: "3.8"
services:
server:
build:
context: .
dockerfile: Dockerfile
ports:
- 6333:6333
- 8501:8501
volumes:
- .:/app
environment:
- QDRANT_API_KEY=SstwpxN4A-cH-pwdocTCighLpo4dX0ldLat39yRe48lVn1wppcH8Ig
- QDRANT_HOST=https://6d58fa02-778a-48b9-9c2c-c25875284ec6.us-east4-0.gcp.cloud.qdrant.io
- TOGETHER_API_KEY=d8ec7106bd0c268bf4672dba83272b86054fbe849eba82f3f75ceb17e6d57eb0
- SERPAPI_API_KEY=dfa5f0e6dfffb9e6749ab4c5dd7e3490d922be171b1adebd6c2a493661999269
develop:
watch:
- path: .
action: rebuild
deploy:
resources:
limits:
memory: 4096M # Adjust the memory limit as needed
|