-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
229 lines (214 loc) · 5.52 KB
/
docker-compose.yml
File metadata and controls
229 lines (214 loc) · 5.52 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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
---
version: '3.7'
services:
## Postgres Docker Compose Config
postgres-order:
container_name: postgres-order
image: postgres
platform: linux/amd64
environment:
POSTGRES_DB: order-service
POSTGRES_USER: nikhilgupta
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
platform: linux/amd64
environment:
POSTGRES_DB: inventory-service
POSTGRES_USER: nikhilgupta
POSTGRES_PASSWORD: password
PGDATA: /data/postgres
volumes:
- ./postgres-inventory:/data/postgres
ports:
- "5432:5432"
restart: always
## Mongo Docker Compose Config
mongo:
container_name: mongo
image: mongo:4.4.14-rc0-focal
platform: linux/amd64
restart: always
ports:
- "27017:27017"
expose:
- "27017"
volumes:
- ./mongo-data:/data/db
## Keycloak Config with Mysql database
keycloak-mysql:
container_name: keycloak-mysql
image: mysql:5.7
platform: linux/amd64
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
platform: linux/amd64
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:7.0.1
container_name: zookeeper
platform: linux/amd64
ports:
- "2181:2181"
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
broker:
image: confluentinc/cp-kafka:7.0.1
container_name: broker
platform: linux/amd64
ports:
- "9092:9092"
depends_on:
- zookeeper
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: 'zookeeper:2181'
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_INTERNAL:PLAINTEXT
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://localhost:9092,PLAINTEXT_INTERNAL://broker:29092
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1
KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: 1
## Zipkin
zipkin:
image: openzipkin/zipkin
platform: linux/amd64
container_name: zipkin
ports:
- "9411:9411"
## Eureka Server
discovery-server:
image: nguptaa/discovery-server:latest
platform: linux/amd64
container_name: discovery-server
ports:
- "8761:8761"
environment:
- SPRING_PROFILES_ACTIVE=docker
depends_on:
- zipkin
api-gateway:
image: nguptaa/api-gateway:latest
platform: linux/amd64
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 Docker Compose Config
product-service:
container_name: product-service
platform: linux/amd64
image: nguptaa/product-service:latest
environment:
- SPRING_PROFILES_ACTIVE=docker
depends_on:
- mongo
- discovery-server
- api-gateway
## Order-Service Docker Compose Config
order-service:
container_name: order-service
platform: linux/amd64
image: nguptaa/order-service:latest
environment:
- SPRING_PROFILES_ACTIVE=docker
- SPRING_DATASOURCE_URL=jdbc:postgresql://postgres-order:5431/order-service
depends_on:
- postgres-order
- broker
- zipkin
- discovery-server
- api-gateway
## Inventory-Service Docker Compose Config
inventory-service:
platform: linux/amd64
container_name: inventory-service
image: nguptaa/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 Docker Compose Config
notification-service:
platform: linux/amd64
container_name: notification-service
image: nguptaa/notification-service:latest
environment:
- SPRING_PROFILES_ACTIVE=docker
depends_on:
- zipkin
- broker
- discovery-server
- api-gateway
## Prometheus
prometheus:
image: prom/prometheus:v2.37.1
platform: linux/amd64
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
platform: linux/amd64
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