-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathdocker-compose.yml
52 lines (47 loc) · 953 Bytes
/
docker-compose.yml
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
services:
app:
image: cloudcodeai/kaizen-app:v0.4.9
ports:
- "8000:8000"
env_file:
- .env
environment:
- ENV=production
- GITHUB_APP_PEM_PATH=/run/secrets/github_app_pem
restart: always
secrets:
- github_app_pem
depends_on:
- redis
- postgres
- qdrant
postgres:
image: postgres:16-bullseye
env_file:
- .env
volumes:
- ./init.sql:/docker-entrypoint-initdb.d/init.sql
ports:
- "5432:5432"
redis:
image: "redis:alpine"
environment:
- REDIS_PASSWORD=${REDIS_PASSWORD}
ports:
- "6379:6379"
qdrant:
image: qdrant/qdrant:latest
ports:
- "6333:6333"
- "6334:6334"
volumes:
- qdrant_data:/qdrant/storage
environment:
- QDRANT__SERVICE__GRPC_PORT=6334
restart: always
volumes:
qdrant_data:
driver: local
secrets:
github_app_pem:
file: ./GITHUB_APP_NIGHTLY.pem