-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
212 lines (195 loc) · 5.02 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
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
version: '3.7'
services:
postgres-order:
container_name: postgres-order
image: postgres
environment:
POSTGRES_DB: order-service
POSTGRES_USER: ptechie
POSTGRES_PASSWORD: password
PGDATA: /data/postgres
volumes:
- ./postgres-order:/data/postgres
expose:
- "5431"
ports:
- "5431:5431"
command: -p 5431
restart: always
postgres-inventory:
container_name: postgres-inventory
image: postgres
environment:
POSTGRES_DB: inventory-service
POSTGRES_USER: ptechie
POSTGRES_PASSWORD: password
PGDATA: /data/postgres
volumes:
- ./postgres-inventory:/data/postgres
ports:
- "5432:5432"
restart: always
mongo:
container_name: mongo
image: mongo:4.4.14-rc0-focal
restart: always
ports:
- "27017:27017"
expose:
- "27017"
volumes:
- ./mongo-data:/data/db
keycloak-mysql:
container_name: keycloak-mysql
image: mysql:5.7
volumes:
- ./mysql_keycloak_data:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: keycloak
MYSQL_USER: keycloak
MYSQL_PASSWORD: password
keycloak:
container_name: keycloak
image: quay.io/keycloak/keycloak:18.0.0
command: ["start-dev", "--import-realm"]
environment:
DB_VENDOR: MYSQL
DB_ADDR: mysql
DB_DATABASE: keycloak
DB_USER: keycloak
DB_PASSWORD: password
KEYCLOAK_ADMIN: admin
KEYCLOAK_ADMIN_PASSWORD: admin
ports:
- "8080:8080"
volumes:
- ./realms/:/opt/keycloak/data/import/
depends_on:
- keycloak-mysql
zookeeper:
image: confluentinc/cp-zookeeper:latest
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
ports:
- 22181:2181
kafka:
image: confluentinc/cp-kafka:latest
depends_on:
- zookeeper
ports:
- 29092:29092
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092,PLAINTEXT_HOST://localhost:29092
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
kafka-ui:
image: provectuslabs/kafka-ui:latest
depends_on:
- kafka
ports:
- 8090:8080
environment:
KAFKA_CLUSTERS_0_NAME: local
KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS: kafka:9092
KAFKA_CLUSTERS_0_ZOOKEEPER: zookeeper:2181
zipkin:
image: openzipkin/zipkin
container_name: zipkin
ports:
- "9411:9411"
discovery-server:
image: microservices-tutorial/discovery-server:latest
container_name: discovery-server
ports:
- "8761:8761"
environment:
- SPRING_PROFILES_ACTIVE=docker
depends_on:
- zipkin
api-gateway:
image: microservices-tutorial/api-gateway:latest
container_name: api-gateway
ports:
- "8181:8080"
expose:
- "8181"
environment:
- SPRING_PROFILES_ACTIVE=docker
- LOGGING_LEVEL_ORG_SPRINGFRAMEWORK_SECURITY=TRACE
depends_on:
- zipkin
- discovery-server
- keycloak
product-service:
container_name: product-service
image: microservices-tutorial/product-service:latest
environment:
- SPRING_PROFILES_ACTIVE=docker
depends_on:
- mongo
- discovery-server
- api-gateway
order-service:
container_name: order-service
image: microservices-tutorial/order-service:latest
environment:
- SPRING_PROFILES_ACTIVE=docker
- SPRING_DATASOURCE_URL=jdbc:postgresql://postgres-order:5431/order-service
depends_on:
- postgres-order
- kafka
- zipkin
- discovery-server
- api-gateway
inventory-service:
container_name: inventory-service
image: microservices-tutorial/inventory-service:latest
environment:
- SPRING_PROFILES_ACTIVE=docker
- SPRING_DATASOURCE_URL=jdbc:postgresql://postgres-inventory:5432/inventory-service
depends_on:
- postgres-inventory
- discovery-server
- api-gateway
notification-service:
container_name: notification-service
image: microservices-tutorial/notification-service:latest
environment:
- SPRING_PROFILES_ACTIVE=docker
depends_on:
- zipkin
- kafka
- discovery-server
- api-gateway
## Prometheus
prometheus:
image: prom/prometheus:v2.37.1
container_name: prometheus
restart: always
ports:
- "9090:9090"
volumes:
- ./prometheus/prometheus.yml:/etc/prometheus/prometheus.yml
depends_on:
- product-service
- inventory-service
- order-service
- notification-service
grafana:
image: grafana/grafana-oss:8.5.2
container_name: grafana
restart: always
ports:
- "3000:3000"
links:
- prometheus:prometheus
volumes:
- ./grafana:/var/lib/grafana
environment:
- GF_SECURITY_ADMIN_USER=admin
- GF_SECURITY_ADMIN_PASSWORD=password