-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
51 lines (46 loc) · 951 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
51 lines (46 loc) · 951 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
services:
auth-service:
build: ./backend/auth-service
ports:
- "3002:3002"
env_file: .env
hospital-service:
build: ./backend/hospital-service
ports:
- "3001:3001"
env_file: .env
queue-service:
build: ./backend/queue-service
ports:
- "3003:3003"
env_file: .env
environment:
- REDIS_URL=redis://redis:6379
depends_on:
redis:
condition: service_healthy
triage-service:
build: ./backend/triage-service
ports:
- "3004:3004"
env_file: .env
redis:
image: redis:alpine
ports:
- "6380:6379"
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 5s
timeout: 3s
retries: 5
frontend:
build:
context: ./frontend
dockerfile: ../frontend.Dockerfile
ports:
- "5174:5173"
depends_on:
- auth-service
- hospital-service
- queue-service
- triage-service