-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
73 lines (65 loc) · 1.42 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
version: '3.8'
services:
zookeeper:
image: zookeeper:3.7
ports:
- "2181:2181"
kafka:
image: wurstmeister/kafka:2.13-2.6.0
ports:
- "9092:9092"
environment:
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_LISTENERS: PLAINTEXT://0.0.0.0:9092
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
depends_on:
- zookeeper
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.9.2
environment:
discovery.type: single-node
ports:
- "9200:9200"
- "9300:9300"
kibana:
image: docker.elastic.co/kibana/kibana:7.9.2
ports:
- "5601:5601"
user_service:
build: ./user_service
volumes:
- ./common:/app/common
ports:
- "5000:5000"
depends_on:
- kafka
- elasticsearch
hotel_service:
build: ./hotel_service
volumes:
- ./common:/app/common
ports:
- "5001:5001"
depends_on:
- kafka
- elasticsearch
reservation_service:
build: ./reservation_service
volumes:
- ./common:/app/common
ports:
- "5002:5002"
depends_on:
- kafka
- elasticsearch
api_gateway:
build: ./api_gateway
volumes:
- ./common:/app/common
ports:
- "5003:5003"
depends_on:
- kafka
- elasticsearch