forked from mohamed-taman/Springy-Store-Microservices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
107 lines (99 loc) · 2.63 KB
/
docker-compose.yml
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
version: '3.7' ## Latest version works with Docker Engine release 18.06.0+
services:
# Start - Core Microservices
## Start - Product service definition
product:
build: store-services/product-service
environment:
- SPRING_PROFILES_ACTIVE=docker
depends_on:
- mongodb
- rabbitmq
## End - Product service definition
## Start - Recommendation service definition
recommendation:
build: store-services/recommendation-service
environment:
- SPRING_PROFILES_ACTIVE=docker
depends_on:
- mongodb
- rabbitmq
## End - Recommendation service definition
## Start - Review service definition
review:
build: store-services/review-service
environment:
- SPRING_PROFILES_ACTIVE=docker
depends_on:
- mysql
- rabbitmq
restart: on-failure
## End - Review service definition
## Start - Store service definition
store:
build: store-services/store-service
ports:
- "8080:8080"
environment:
- SPRING_PROFILES_ACTIVE=docker
depends_on:
- rabbitmq
## End - Store service definition
# End - Core Microservices
# Start - Cloud Infrastructure
## Start - Eureka Service Discovery definition
eureka:
build: store-cloud-infra/eureka-server
ports:
- "8761:8761"
restart: on-failure
## End - Eureka Service Discovery definition
# End - Cloud Infrastructure
# Start - Data and transport Infrastructure
## Start - mongodb database definition
### $ mongo
mongodb:
image: mongo:4.2.5-bionic
ports:
- "27017-27019:27017-27019"
healthcheck:
test: "mongo --eval 'db.stats().ok'"
interval: 10s
timeout: 10s
retries: 5
start_period: 40s
restart: on-failure
## End - mongodb database definition
## Start - MySql database definition
### $ mysql -uroot -h127.0.0.1 -p
mysql:
image: mysql:8.0.19
ports:
- "3306:3306"
environment:
- MYSQL_ROOT_PASSWORD=rootpwd
- MYSQL_DATABASE=review-db
- MYSQL_USER=user
- MYSQL_PASSWORD=pwd
- MYSQL_ROOT_HOST=%
healthcheck:
test: "/usr/bin/mysql --user=user --password=pwd --execute \"SHOW DATABASES;\""
interval: 10s
timeout: 5s
retries: 10
restart: on-failure
## End - MySql database definition
## Start - RabbitMQ Messaging service
rabbitmq:
image: rabbitmq:3.8.3-management
ports:
- 5672:5672
- 15672:15672
healthcheck:
test: ["CMD", "rabbitmqctl", "status"]
interval: 10s
timeout: 5s
retries: 10
restart: on-failure
## End - RabbitMQ Messaging service
# End - Data and transport Infrastructure