-
Notifications
You must be signed in to change notification settings - Fork 21
/
docker-compose.yml
227 lines (210 loc) · 5.1 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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
version: '3.7'
services:
postgres:
image: postgres:10.6-alpine
container_name: go_postgres
ports:
- "5492:5432"
networks:
- broker-kafka
environment:
- POSTGRES_USER=dbadmin
- POSTGRES_PASSWORD=dbadmin
kraken_designer:
image: devopsfaith/krakendesigner:latest
container_name: krakend_designer
ports:
- "8787:80"
krakend:
container_name: krakend
image: devopsfaith/krakend:latest
networks:
- broker-kafka
volumes:
- ./api_gateway:/etc/krakend
ports:
- "5000:5000"
- "8090:8090"
jaeger:
image: jaegertracing/all-in-one:latest
container_name: jaeger
networks:
- broker-kafka
ports:
- "16686:16686"
- "14268:14268"
grafana:
container_name: grafana
build:
dockerfile: Dockerfile
context: ./_grafana
networks:
- broker-kafka
ports:
- "3003:3000"
influxdb:
image: influxdb:latest
container_name: influxdb
networks:
- broker-kafka
environment:
DOCKER_INFLUXDB_INIT_MODE: setup
DOCKER_INFLUXDB_INIT_USERNAME: admin
DOCKER_INFLUXDB_INIT_PASSWORD: password
DOCKER_INFLUXDB_INIT_ORG: myorg
DOCKER_INFLUXDB_INIT_BUCKET: krakend
ports:
- "8086:8086"
file_server:
image: jaxgeller/lwan
container_name: file_server
networks:
- broker-kafka
volumes:
- ./_file_server:/lwan/wwwroot
ports:
- 8002:8080
zookeeper:
image: confluentinc/cp-zookeeper:latest
container_name: zookeeper
networks:
- broker-kafka
ports:
- 2181:2181
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
kafka:
image: confluentinc/cp-kafka:latest
container_name: kafka
networks:
- broker-kafka
depends_on:
- zookeeper
ports:
- 9092:9092
- 29092:29092
environment:
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:29092,PLAINTEXT_HOST://kafka:9092
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
KAFKA_AUTO_CREATE_TOPICS_ENABLE: "true"
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
KAFKA_LOG_CLEANER_DELETE_RETENTION_MS: 5000
KAFKA_BROKER_ID: 1
KAFKA_MIN_INSYNC_REPLICAS: 1
# volumes:
# - ./_script:/wait
# command: ["/wait/wait-for-it.sh", "--timeout=0", "zookeeper:2181", "--", "/etc/confluent/docker/run"]
kafdrop:
image: obsidiandynamics/kafdrop:latest
container_name: kafdrop
networks:
- broker-kafka
depends_on:
- kafka
ports:
- 9000:9000
environment:
KAFKA_BROKERCONNECT: kafka:29092
identity-service:
build:
context: ./
dockerfile: ./services.identity/Dockerfile
container_name: identity_service
ports:
- 8081:8081
networks:
- broker-kafka
depends_on:
- postgres
environment:
- APP_PORT=8081
- DB_HOST=postgres
- DB_PORT=5432
- KAFKA_BROKER_ADDRESS=kafka:9092
customer-service:
build:
context: ./
dockerfile: ./services.customer/Dockerfile
container_name: customer_service
ports:
- 8082:8082
networks:
- broker-kafka
depends_on:
- postgres
environment:
- APP_PORT=8082
- DB_HOST=postgres
- DB_PORT=5432
- KAFKA_BROKER_ADDRESS=kafka:9092
product-service:
build:
context: ./
dockerfile: ./services.product/Dockerfile
container_name: product_service
ports:
- 8083:8083
networks:
- broker-kafka
depends_on:
- postgres
environment:
- APP_PORT=8083
- DB_HOST=postgres
- DB_PORT=5432
- KAFKA_BROKER_ADDRESS=kafka:9092
notification-service:
build:
context: ./
dockerfile: ./services.notification/Dockerfile
container_name: notification_service
ports:
- 8084:8084
networks:
- broker-kafka
depends_on:
- postgres
environment:
- APP_PORT=8084
- DB_HOST=postgres
- DB_PORT=5432
- KAFKA_BROKER_ADDRESS=kafka:9092
order-service:
build:
context: ./
dockerfile: ./services.order/Dockerfile
container_name: order_service
ports:
- 8085:8085
networks:
- broker-kafka
depends_on:
- postgres
environment:
- APP_PORT=8085
- DB_HOST=postgres
- DB_PORT=5432
- KAFKA_BROKER_ADDRESS=kafka:9092
- CUSTOMER_SERVICE_ENDPOINT=http://customer-service:8082/api
# pactbroker:
# container_name: pactbroker
# image: pactfoundation/pact-broker:latest
# ports:
# - 9292:9292
# networks:
# - broker-kafka
# environment:
# - PACT_BROKER_DATABASE_URL=postgresql://dbadmin:dbadmin@postgres:5432/postgres
# - PACT_BROKER_BASIC_AUTH_USERNAME=admin
# - PACT_BROKER_BASIC_AUTH_PASSWORD=admin
# - PACT_BROKER_LOG_LEVEL=INFO
# - PACT_BROKER_PORT=9292
# restart: on-failure
# depends_on:
# - postgres
networks:
broker-kafka:
driver: bridge