-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
103 lines (89 loc) · 2.8 KB
/
docker-compose.yaml
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
version: '3.0'
networks:
network-distributed-systems-project:
ipam:
config:
- subnet: 10.100.0.0/24
services:
database-mongodb:
image: 'mongo'
volumes:
- data:/data/db
restart: always
networks:
network-distributed-systems-project:
ipv4_address: 10.100.0.200
server-nginx-dhaka:
build: server-nginx
depends_on:
- service-ride-sharing-dhaka
- service-rating
environment:
- RIDE_SHARING_VARIABLE=service-ride-sharing-dhaka
command: /bin/sh -c "envsubst < /etc/nginx/conf.d/nginx.conf.template > /etc/nginx/conf.d/nginx.conf && nginx -g 'daemon off;'"
restart: always
networks:
network-distributed-systems-project:
ipv4_address: 10.100.0.2
service-rating:
build: service-rating
depends_on:
- database-mongodb
restart: always
networks:
network-distributed-systems-project:
ipv4_address: 10.100.0.100
server-nginx-ctg:
build: server-nginx
depends_on:
- service-ride-sharing-ctg
- service-rating
environment:
- RIDE_SHARING_VARIABLE=service-ride-sharing-ctg
command: /bin/sh -c "envsubst < /etc/nginx/conf.d/nginx.conf.template > /etc/nginx/conf.d/nginx.conf && nginx -g 'daemon off;'"
restart: always
networks:
network-distributed-systems-project:
ipv4_address: 10.100.0.20
service-communication-dhaka:
build: service-communication
restart: always
ports:
- 8080
environment:
- SERVER_LOCATION=dhaka
networks:
network-distributed-systems-project:
ipv4_address: 10.100.0.3
service-communication-ctg:
build: service-communication
restart: always
ports:
- 8080
environment:
- SERVER_LOCATION=chittagong
networks:
network-distributed-systems-project:
ipv4_address: 10.100.0.30
service-ride-sharing-dhaka:
build: service-ride-sharing
depends_on:
- service-communication-dhaka
environment:
- SERVER_LOCATION=dhaka
restart: always
networks:
network-distributed-systems-project:
ipv4_address: 10.100.0.4
service-ride-sharing-ctg:
build: service-ride-sharing
restart: always
depends_on:
- service-communication-ctg
environment:
- SERVER_LOCATION=chittagong
networks:
network-distributed-systems-project:
ipv4_address: 10.100.0.40
volumes:
data: