-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
132 lines (122 loc) · 3.37 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
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
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
environment:
# - SPRING_PROFILES_ACTIVE=external-OAuth-Provider
- 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
restart: on-failure
## End - Eureka Service Discovery definition
## Start - Edge Server definition
gateway:
build: store-cloud-infra/edge-server
ports:
- "8443:8443"
environment:
# - SPRING_PROFILES_ACTIVE=external-OAuth-Provider
- SPRING_PROFILES_ACTIVE=docker
# dynamically change certificate at run time
- SERVER_SSL_KEY_STORE=file:/keystore/edge.p12
- SERVER_SSL_KEY_STORE_PASSWORD=password
volumes:
- $PWD/config/keystore:/keystore
depends_on:
- eureka
restart: on-failure
## End - Edge Server definition
## Start - Edge Server definition
auth-server:
build: store-cloud-infra/authorization-server
environment:
- SPRING_PROFILES_ACTIVE=docker
depends_on:
- eureka
restart: on-failure
## End - Edge Server definition
# End - Cloud Infrastructure
# Start - Data and transport Infrastructure
## Start - mongodb database definition
### $ mongo
mongodb:
image: mongo:4.2.6-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.20
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