-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
46 lines (42 loc) · 1.33 KB
/
Copy pathdocker-compose.yml
File metadata and controls
46 lines (42 loc) · 1.33 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
version: '3.9'
services:
authentication-service:
image: registry.git.chalmers.se/courses/dit355/2024/student_teams/dit356_2024_20/dit-356-project-group-20/authentication-service:latest
deploy:
replicas: 3
restart_policy:
condition: on-failure
ports:
- "8081:8080"
environment:
- CLIENT_ID=auth-service-${HOSTNAME}
clinic-service:
image: registry.git.chalmers.se/courses/dit355/2024/student_teams/dit356_2024_20/dit-356-project-group-20/clinic-service:latest
deploy:
replicas: 3
restart_policy:
condition: on-failure
ports:
- "8082:8080"
environment:
- CLIENT_ID=clinic-service-${HOSTNAME}
notification-service:
image: registry.git.chalmers.se/courses/dit355/2024/student_teams/dit356_2024_20/dit-356-project-group-20/notification-service:latest
deploy:
replicas: 2
restart_policy:
condition: on-failure
ports:
- "8083:8080"
environment:
- CLIENT_ID=notification-service-${HOSTNAME}
schedule-service:
image: registry.git.chalmers.se/courses/dit355/2024/student_teams/dit356_2024_20/dit-356-project-group-20/schedule-service:latest
deploy:
replicas: 3
restart_policy:
condition: on-failure
ports:
- "8084:8080"
environment:
- CLIENT_ID=schedule-service-${HOSTNAME}