-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
58 lines (56 loc) · 1022 Bytes
/
docker-compose.yaml
File metadata and controls
58 lines (56 loc) · 1022 Bytes
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
services:
api:
container_name: api-endpoints
build:
context: .
ports:
- "8000:8000"
env_file:
- .env
volumes:
- ./data:/app/data
depends_on:
- qdrant
networks:
- aira-network
frontend:
container_name: ai-chat
build:
context: ./chat
dockerfile: Dockerfile
ports:
- "3000:3000"
environment:
- NODE_ENV=production
- BACKEND_URL=http://api:8000
depends_on:
- api
networks:
- aira-network
docs:
container_name: docs
build: ./docs
ports:
- "3007:3007"
environment:
- NODE_ENV=production
command: npm start
depends_on:
- api
networks:
- aira-network
qdrant:
container_name: qdrant-service
image: qdrant/qdrant:latest
ports:
- "6333:6333"
- "6334:6334"
volumes:
- ./qdrant_storage:/qdrant/storage
env_file:
- .env
networks:
- aira-network
networks:
aira-network:
driver: bridge