-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
60 lines (53 loc) · 1.3 KB
/
Copy pathdocker-compose.yml
File metadata and controls
60 lines (53 loc) · 1.3 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
version: '3'
services:
appointments:
image: abdullah4444/appointments:14bea8ab7608ef05224b999d5b4bb47b526eff48
build: ./path_to_appointments_folder
ports:
- "7070:7070"
networks:
- app-networkversion: '3'
services:
appointments:
build: ./path_to_appointments_folder
ports:
- "7070:7070"
networks:
- app-network
doctors:
image: abdullah4444/doctors:c06bc0bb275f1b17122ed572330f1e93f2719a01
build: ./path_to_doctors_folder
ports:
- "9090:9090"
networks:
- app-network
frontend:
image: abdullah4444/frontend_doctors:220dec6927a8b28209b3f35d1b2f4f75c3864f62
build: ./path_to_frontend_folder
ports:
- "3000:3000"
environment:
DOCTORS_SERVICE_URL: doctors:9090
APPOINTMENTS_SERVICE_URL: appointments:7070
networks:
- app-network
networks:
app-network:
doctors:
build: ./path_to_doctors_folder
ports:
- "9090:9090"
networks:
- app-network
frontend:
image: abdullah4444/frontend_doctors:220dec6927a8b28209b3f35d1b2f4f75c3864f62
build: ./path_to_frontend_folder
ports:
- "3000:3000"
environment:
DOCTORS_SERVICE_URL: doctors:9090
APPOINTMENTS_SERVICE_URL: appointments:7070
networks:
- app-network
networks:
app-network: