File size: 581 Bytes
74cf6bd
 
 
 
 
 
ad97a86
74cf6bd
 
 
 
 
 
 
 
ad97a86
74cf6bd
 
 
 
 
 
 
 
 
 
 
 
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
version: '3.8'

services:
  app:
    build: .
    ports:
      - "7860:7860"
    environment:
      - QDRANT_URL=http://qdrant:6333
      - WORKERS=4  # Set number of workers
      # - QDRANT_API_KEY=your_api_key_here (uncomment and set if needed)
    depends_on:
      - qdrant
    restart: unless-stopped
    healthcheck:
      test: ["CMD", "curl", "-f", "http://localhost:7860/"]
      interval: 30s
      timeout: 10s
      retries: 3
      start_period: 40s

  qdrant:
    image: qdrant/qdrant:v1.13.5
    volumes:
      - qdrant_data:/qdrant/storage

volumes:
  qdrant_data: