-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-kafka.yml
80 lines (73 loc) · 2.1 KB
/
docker-compose-kafka.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
version: "3"
services:
zookeeper:
image: 'bitnami/zookeeper:latest'
ports:
- '2183:2183'
environment:
- ALLOW_ANONYMOUS_LOGIN=yes
networks:
- document-streaming
kafka:
image: 'bitnami/kafka:latest'
ports:
- '9092:9092' #change to 9093 to access external from your windows host
environment:
- KAFKA_BROKER_ID=1
- KAFKA_CFG_ZOOKEEPER_CONNECT=zookeeper:2181
- ALLOW_PLAINTEXT_LISTENER=yes
- KAFKA_CFG_LISTENER_SECURITY_PROTOCOL_MAP=CLIENT:PLAINTEXT,EXTERNAL:PLAINTEXT #add aditional listener for external
- KAFKA_CFG_LISTENERS=CLIENT://:9092,EXTERNAL://:9093 #9092 will be for other containers, 9093 for your windows client
- KAFKA_CFG_ADVERTISED_LISTENERS=CLIENT://kafka:9092,EXTERNAL://localhost:9093 #9092 will be for other containers, 9093 for your windows client
- KAFKA_INTER_BROKER_LISTENER_NAME=CLIENT
depends_on:
- zookeeper
networks:
- document-streaming
spark:
image: 'jupyter/pyspark-notebook:spark-2'
ports:
- '8888:8888'
- "4040-4080:4040-4080"
volumes:
- ./ApacheSpark/:/home/jovyan/work
networks:
- document-streaming
api-ingest:
image: 'api-ingest'
ports:
- '80:80'
networks:
- document-streaming
mongo:
container_name: mongo-dev
image: mongo
volumes:
- ~/dockerdata/mongodb:/data/db
restart: on-failure
ports:
- "27018:27018"
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
MONGO_INITDB_DATABASE: auth
networks:
- document-streaming
mongo-express:
image: mongo-express
restart: on-failure
ports:
- "8081:8081"
environment:
ME_CONFIG_MONGODB_SERVER: mongo-dev
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: example
ME_CONFIG_BASICAUTH_USERNAME: admin
ME_CONFIG_BASICAUTH_PASSWORD: tribes
networks:
- document-streaming
depends_on:
- mongo
networks:
document-streaming:
driver: bridge