forked from NatalijaGajic/spring_cloud_distributed_systems
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
191 lines (172 loc) · 4.24 KB
/
docker-compose.yml
File metadata and controls
191 lines (172 loc) · 4.24 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
version: '2.1'
services:
course:
build: microservices/course-service
mem_limit: 350m
networks:
- my-network
environment:
- SPRING_PROFILES_ACTIVE=docker
- CONFIG_SERVER_USR=${CONFIG_SERVER_USR}
- CONFIG_SERVER_PWD=${CONFIG_SERVER_PWD}
depends_on:
mongodb:
condition: service_healthy
rabbitmq:
condition: service_healthy
lecture:
build: microservices/lecture-service
mem_limit: 350m
networks:
- my-network
environment:
- SPRING_PROFILES_ACTIVE=docker
- CONFIG_SERVER_USR=${CONFIG_SERVER_USR}
- CONFIG_SERVER_PWD=${CONFIG_SERVER_PWD}
depends_on:
mongodb:
condition: service_healthy
rabbitmq:
condition: service_healthy
author:
build: microservices/author-service
mem_limit: 350m
networks:
- my-network
environment:
- SPRING_PROFILES_ACTIVE=docker
- CONFIG_SERVER_USR=${CONFIG_SERVER_USR}
- CONFIG_SERVER_PWD=${CONFIG_SERVER_PWD}
depends_on:
mongodb:
condition: service_healthy
rabbitmq:
condition: service_healthy
rating:
build: microservices/rating-service
mem_limit: 350m
networks:
- my-network
environment:
- SPRING_PROFILES_ACTIVE=docker
- CONFIG_SERVER_USR=${CONFIG_SERVER_USR}
- CONFIG_SERVER_PWD=${CONFIG_SERVER_PWD}
depends_on:
mysql:
condition: service_healthy
rabbitmq:
condition: service_healthy
course-composite:
build: microservices/course-composite-service
mem_limit: 350m
networks:
- my-network
environment:
- SPRING_PROFILES_ACTIVE=docker
- CONFIG_SERVER_USR=${CONFIG_SERVER_USR}
- CONFIG_SERVER_PWD=${CONFIG_SERVER_PWD}
depends_on:
rabbitmq:
condition: service_healthy
eureka:
networks:
- my-network
environment:
- SPRING_PROFILES_ACTIVE=docker
- CONFIG_SERVER_USR=${CONFIG_SERVER_USR}
- CONFIG_SERVER_PWD=${CONFIG_SERVER_PWD}
build: spring-cloud/eureka-server
mem_limit: 350m
gateway:
networks:
- my-network
environment:
- SPRING_PROFILES_ACTIVE=docker
- CONFIG_SERVER_USR=${CONFIG_SERVER_USR}
- CONFIG_SERVER_PWD=${CONFIG_SERVER_PWD}
build: spring-cloud/gateway
mem_limit: 350m
ports:
- "8443:8443"
auth-server:
networks:
- my-network
environment:
- SPRING_PROFILES_ACTIVE=docker
- CONFIG_SERVER_USR=${CONFIG_SERVER_USR}
- CONFIG_SERVER_PWD=${CONFIG_SERVER_PWD}
build: spring-cloud/authorization-server
mem_limit: 350m
config-server:
networks:
- my-network
environment:
- SPRING_PROFILES_ACTIVE=docker,native
- ENCRYPT_KEY=${CONFIG_SERVER_ENCRYPT_KEY}
- SPRING_SECURITY_USER_NAME=${CONFIG_SERVER_USR}
- SPRING_SECURITY_USER_PASSWORD=${CONFIG_SERVER_PWD}
volumes:
- ./config-repo:/config-repo
build: spring-cloud/config-server
mem_limit: 350m
# $ mongo
mongodb:
networks:
- my-network
image: mongo:3.6.9
mem_limit: 350m
ports:
- "27017:27017"
command: mongod --smallfiles
healthcheck:
test: "mongo --eval 'db.stats().ok'"
interval: 20s
timeout: 5s
retries: 10
# $ mysql -uroot -h127.0.0.1 -p
mysql:
image: mysql:5.7
mem_limit: 350m
networks:
- my-network
ports:
- "3306:3306"
environment:
- MYSQL_ROOT_PASSWORD=mysql
- MYSQL_DATABASE=rating-db
- MYSQL_USER=user
- MYSQL_PASSWORD=mysql
healthcheck:
test: "/usr/bin/mysql --user=root --password=mysql --execute \"SHOW DATABASES;\""
interval: 20s
timeout: 5s
retries: 10
rabbitmq:
image: rabbitmq:3.7.8-management
mem_limit: 350m
networks:
- my-network
ports:
- 5672:5672
- 15672:15672
healthcheck:
test: [ "CMD", "rabbitmqctl", "status" ]
interval: 20s
timeout: 5s
retries: 10
zipkin:
image: openzipkin/zipkin:2.12.9
mem_limit: 512m
networks:
- my-network
environment:
- STORAGE_TYPE=mem
- RABBIT_ADDRESSES=rabbitmq
ports:
- 9411:9411
depends_on:
rabbitmq:
condition: service_healthy
networks:
my-network:
name: my-network