-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
112 lines (104 loc) · 2.52 KB
/
Copy pathdocker-compose.yml
File metadata and controls
112 lines (104 loc) · 2.52 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
version: '3.8'
services:
postgres:
image: postgres:15-alpine
container_name: idp-postgres
restart: always
environment:
POSTGRES_DB: idp_db
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres_dev_password
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
- ./database/migrations:/docker-entrypoint-initdb.d
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres -d idp_db"]
interval: 5s
timeout: 5s
retries: 5
redis:
image: redis:7-alpine
container_name: idp-redis
restart: always
ports:
- "6379:6379"
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 5s
timeout: 5s
retries: 5
backend:
build:
context: ./backend
dockerfile: Dockerfile
container_name: idp-backend
restart: always
ports:
- "5000:5000"
environment:
- PORT=5000
- DB_HOST=postgres
- DB_PORT=5432
- DB_NAME=idp_db
- DB_USER=postgres
- DB_PASSWORD=postgres_dev_password
- REDIS_HOST=redis
- REDIS_PORT=6379
- CLASSIFIER_SERVICE_URL=http://classifier:8000
- EXTRACTION_SERVICE_URL=http://extraction-mock:5001
- STRUCTURING_SERVICE_URL=http://structuring-mock:5002
- VALIDATION_SERVICE_URL=http://validation:5003
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
classifier:
condition: service_started
extraction-mock:
condition: service_started
structuring-mock:
condition: service_started
validation:
condition: service_started
classifier:
build:
context: ./ai-services/classifier
container_name: idp-classifier
restart: always
ports:
- "8000:8000"
environment:
- PORT=8000
extraction-mock:
build:
context: ./teammate-services/extraction-mock
container_name: idp-extraction-mock
restart: always
ports:
- "5001:5001"
environment:
- PORT=5001
structuring-mock:
build:
context: ./teammate-services/structuring-mock
container_name: idp-structuring-mock
restart: always
ports:
- "5002:5002"
environment:
- PORT=5002
validation:
build:
context: ./validation phase/validation phase/validation-engine
dockerfile: Dockerfile
container_name: idp-validation
restart: always
ports:
- "5003:5003"
environment:
- PORT=5003
volumes:
postgres_data: