-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
196 lines (183 loc) · 5.15 KB
/
docker-compose.yml
File metadata and controls
196 lines (183 loc) · 5.15 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
version: '3.4'
services:
menu:
build:
context: ./menu/
dockerfile: .docker/Dockerfile
restart: always
command: ["go", "run", "main.go", "all"]
environment:
ENV: dev
ports:
- $MENU_REST_PORT:8080
volumes:
- ./menu/:/go/src/
depends_on:
- postgres
networks:
- pinned
extra_hosts:
- 'host.docker.internal:172.17.0.1'
guest:
build:
context: ./guest/
dockerfile: .docker/Dockerfile
restart: always
command: ["go", "run", "main.go", "all"]
environment:
ENV: dev
ports:
- $GUEST_REST_PORT:8080
volumes:
- ./guest/:/go/src/
depends_on:
- postgres
networks:
- pinned
extra_hosts:
- 'host.docker.internal:172.17.0.1'
attendant:
build:
context: ./attendant/
dockerfile: .docker/Dockerfile
restart: always
command: ["go", "run", "main.go", "all"]
environment:
ENV: dev
ports:
- $ATTENDANT_REST_PORT:8080
volumes:
- ./attendant/:/go/src/
depends_on:
- postgres
networks:
- pinned
extra_hosts:
- 'host.docker.internal:172.17.0.1'
place:
build:
context: ./place/
dockerfile: .docker/Dockerfile
restart: always
command: ["go", "run", "main.go", "all"]
environment:
ENV: dev
ports:
- $PLACE_REST_PORT:8080
volumes:
- ./place/:/go/src/
depends_on:
- postgres
networks:
- pinned
extra_hosts:
- 'host.docker.internal:172.17.0.1'
guest-check:
build:
context: ./guest-check/
dockerfile: .docker/Dockerfile
restart: always
command: ["go", "run", "main.go", "all"]
environment:
ENV: dev
ports:
- $GUEST_CHECK_REST_PORT:8080
volumes:
- ./guest-check/:/go/src/
depends_on:
- postgres
networks:
- pinned
extra_hosts:
- 'host.docker.internal:172.17.0.1'
postgres:
image: postgres:9.4
restart: always
tty: true
environment:
POSTGRES_PASSWORD: $POSTGRES_PASSWORD
POSTGRES_USER: $POSTGRES_USER
# POSTGRES_DB: $POSTGRES_DB
volumes:
- pgdata:/var/lib/postgresql/data
ports:
- $DB_PORT:5432
networks:
- pinned
pgadmin:
image: adminer:4.8.1
restart: always
ports:
- 8080:8080
depends_on:
- postgres
networks:
- pinned
zookeeper:
image: confluentinc/cp-zookeeper:latest
environment:
ZOOKEEPER_CLIENT_PORT: 2181
networks:
- pinned
kafka:
image: confluentinc/cp-kafka:latest
depends_on:
- zookeeper
ports:
- 9092:9092
- 9094:9094
environment:
KAFKA_BROKER_ID: 1
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_INTER_BROKER_LISTENER_NAME: INTERNAL
KAFKA_LISTENERS: INTERNAL://:9092,OUTSIDE://:9094
KAFKA_ADVERTISED_LISTENERS: INTERNAL://kafka:9092,OUTSIDE://host.docker.internal:9094
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: INTERNAL:PLAINTEXT,OUTSIDE:PLAINTEXT
networks:
- pinned
extra_hosts:
- 'host.docker.internal:172.17.0.1'
kafka-topics-generator:
image: confluentinc/cp-kafka:latest
depends_on:
- kafka
command: >
bash -c
"sleep 5s &&
kafka-topics --create --topic=NEW_GUEST_CHECK_ITEM --if-not-exists --bootstrap-server=kafka:9092 &&
kafka-topics --create --topic=CANCEL_GUEST_CHECK_ITEM --if-not-exists --bootstrap-server=kafka:9092 &&
kafka-topics --create --topic=PREPARE_GUEST_CHECK_ITEM --if-not-exists --bootstrap-server=kafka:9092 &&
kafka-topics --create --topic=READY_GUEST_CHECK_ITEM --if-not-exists --bootstrap-server=kafka:9092 &&
kafka-topics --create --topic=FORWARD_GUEST_CHECK_ITEM --if-not-exists --bootstrap-server=kafka:9092 &&
kafka-topics --create --topic=DELIVER_GUEST_CHECK_ITEM --if-not-exists --bootstrap-server=kafka:9092 &&
kafka-topics --create --topic=NEW_GUEST_CHECK --if-not-exists --bootstrap-server=kafka:9092 &&
kafka-topics --create --topic=OPEN_GUEST_CHECK --if-not-exists --bootstrap-server=kafka:9092 &&
kafka-topics --create --topic=WAIT_PAYMENT_GUEST_CHECK --if-not-exists --bootstrap-server=kafka:9092 &&
kafka-topics --create --topic=CANCEL_GUEST_CHECK --if-not-exists --bootstrap-server=kafka:9092 &&
kafka-topics --create --topic=PAY_GUEST_CHECK --if-not-exists --bootstrap-server=kafka:9092 &&
kafka-topics --create --topic=NEW_GUEST --if-not-exists --bootstrap-server=kafka:9092 &&
kafka-topics --create --topic=NEW_PLACE --if-not-exists --bootstrap-server=kafka:9092 &&
kafka-topics --create --topic=NEW_ATTENDANT --if-not-exists --bootstrap-server=kafka:9092
"
networks:
- pinned
control-center:
image: confluentinc/cp-enterprise-control-center:6.0.1
hostname: control-center
depends_on:
- kafka
ports:
- 9021:9021
environment:
CONTROL_CENTER_BOOTSTRAP_SERVERS: kafka:9092
CONTROL_CENTER_REPLICATION_FACTOR: 1
PORT: 9021
networks:
- pinned
volumes:
pgdata:
driver: local
networks:
pinned:
driver: bridge