-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
261 lines (243 loc) · 6.25 KB
/
Copy pathdocker-compose.yml
File metadata and controls
261 lines (243 loc) · 6.25 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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
version: '3.8'
services:
# Frontend React
frontend:
container_name: invoice_v2_react
build:
context: .
dockerfile: FRONT.DOCKERFILE
environment:
WATCHPACK_POLLING: 'true'
WDS_SOCKET_PORT: '3001'
ports:
- 3001:3000
volumes:
- ./appreact:/appreact
- /appreact/node_modules
networks:
- invoice-network
depends_on:
- api-gateway
# API Gateway (NestJS)
api-gateway:
container_name: invoice_api_gateway
build:
context: .
dockerfile: NESTJS.DOCKERFILE
ports:
- 5000:5000
environment:
- MONGO_URI=mongodb://mongodb:27017/invoiceapp
- POSTGRES_URL=postgresql://postgres:password@postgres:5432/invoiceapp
- REDIS_URL=redis://redis:6379
- ELASTICSEARCH_URL=http://elasticsearch:9200
- KAFKA_BROKERS=kafka:9092
- JWT_SECRET=your-super-secret-jwt-key
volumes:
- ./backend-nestjs:/app
- /app/node_modules
networks:
- invoice-network
depends_on:
- mongodb
- postgres
- redis
- elasticsearch
- kafka
# Auth Microservice
auth-service:
container_name: invoice_auth_service
build:
context: ./microservices/auth-service
dockerfile: Dockerfile
environment:
- MONGO_URI=mongodb://mongodb:27017/invoiceapp_auth
- KAFKA_BROKERS=kafka:9092
- JWT_SECRET=your-super-secret-jwt-key
networks:
- invoice-network
depends_on:
- mongodb
- kafka
# Invoice Microservice
invoice-service:
container_name: invoice_invoice_service
build:
context: ./microservices/invoice-service
dockerfile: Dockerfile
environment:
- POSTGRES_URL=postgresql://postgres:password@postgres:5432/invoiceapp_invoices
- KAFKA_BROKERS=kafka:9092
- ELASTICSEARCH_URL=http://elasticsearch:9200
networks:
- invoice-network
depends_on:
- postgres
- kafka
- elasticsearch
# Product Microservice
product-service:
container_name: invoice_product_service
build:
context: ./microservices/product-service
dockerfile: Dockerfile
environment:
- POSTGRES_URL=postgresql://postgres:password@postgres:5432/invoiceapp_products
- KAFKA_BROKERS=kafka:9092
- REDIS_URL=redis://redis:6379
networks:
- invoice-network
depends_on:
- postgres
- kafka
- redis
# Analytics Microservice
analytics-service:
container_name: invoice_analytics_service
build:
context: ./microservices/analytics-service
dockerfile: Dockerfile
environment:
- ELASTICSEARCH_URL=http://elasticsearch:9200
- KAFKA_BROKERS=kafka:9092
- REDIS_URL=redis://redis:6379
networks:
- invoice-network
depends_on:
- elasticsearch
- kafka
- redis
# Notification Microservice
notification-service:
container_name: invoice_notification_service
build:
context: ./microservices/notification-service
dockerfile: Dockerfile
environment:
- KAFKA_BROKERS=kafka:9092
- MAIL_HOST=smtp.mailtrap.io
- MAIL_PORT=587
- MAIL_USERNAME=${MAIL_USERNAME}
- MAIL_PASSWORD=${MAIL_PASSWORD}
- MAIL_FROM_ADDRESS=noreply@invoiceapp.com
networks:
- invoice-network
depends_on:
- kafka
# Utility Service (PHP)
utility-service-php:
container_name: invoice_utility_service
build:
context: ./microservices/utility-service-php
dockerfile: Dockerfile
ports:
- 3005:80
networks:
- invoice-network
# MongoDB
mongodb:
image: mongo:latest
container_name: invoice_mongodb
ports:
- 27017:27017
volumes:
- mongodb_data:/data/db
- ./init.js:/docker-entrypoint-initdb.d/init.js:ro
networks:
- invoice-network
# PostgreSQL
postgres:
image: postgres:15
container_name: invoice_postgres
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
POSTGRES_DB: invoiceapp
ports:
- 5433:5432
volumes:
- postgres_data:/var/lib/postgresql/data
networks:
- invoice-network
# Redis
redis:
image: redis:7-alpine
container_name: invoice_redis
ports:
- 6379:6379
volumes:
- redis_data:/data
networks:
- invoice-network
# Elasticsearch
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.11.0
container_name: invoice_elasticsearch
environment:
- discovery.type=single-node
- xpack.security.enabled=false
- 'ES_JAVA_OPTS=-Xms512m -Xmx512m'
ports:
- 9200:9200
- 9300:9300
volumes:
- elasticsearch_data:/usr/share/elasticsearch/data
networks:
- invoice-network
# Kibana
kibana:
image: docker.elastic.co/kibana/kibana:8.11.0
container_name: invoice_kibana
environment:
- ELASTICSEARCH_HOSTS=http://elasticsearch:9200
ports:
- 5601:5601
networks:
- invoice-network
depends_on:
- elasticsearch
# Zookeeper (for Kafka)
zookeeper:
image: confluentinc/cp-zookeeper:latest
container_name: invoice_zookeeper
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
networks:
- invoice-network
# Kafka
kafka:
image: confluentinc/cp-kafka:latest
container_name: invoice_kafka
depends_on:
- zookeeper
ports:
- 9092:9092
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
networks:
- invoice-network
# Kafka UI
kafka-ui:
image: provectuslabs/kafka-ui:latest
container_name: invoice_kafka_ui
environment:
KAFKA_CLUSTERS_0_NAME: local
KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS: kafka:9092
ports:
- 8080:8080
networks:
- invoice-network
depends_on:
- kafka
networks:
invoice-network:
driver: bridge
volumes:
mongodb_data:
postgres_data:
redis_data:
elasticsearch_data: