-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (33 loc) · 881 Bytes
/
docker-compose.yml
File metadata and controls
36 lines (33 loc) · 881 Bytes
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
services:
kafka:
image: wurstmeister/kafka:latest
ports:
- "9092:9092"
environment:
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_LISTENERS: PLAINTEXT://0.0.0.0:9092
depends_on:
- zookeeper
zookeeper:
image: wurstmeister/zookeeper:latest
ports:
- "2181:2181"
application:
image: 471112861132.dkr.ecr.ap-northeast-2.amazonaws.com/waggle-dev:latest
ports:
- "8080:8080"
depends_on:
- kafka
env_file:
- .env
nginx:
image: nginx:latest
ports:
- "80:80"
volumes:
- ./.platform/nginx/conf.d/proxy.conf:/etc/nginx/conf.d/default.conf
depends_on:
- application