-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
61 lines (54 loc) · 1.09 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
---
version: '2'
services:
zookeeper:
image: confluentinc/cp-zookeeper:latest
environment:
ZOOKEEPER_CLIENT_PORT: 32181
ZOOKEEPER_TICK_TIME: 2000
expose:
- "2181"
- "2888"
- "32181"
- "3888"
kafka:
image: confluentinc/cp-kafka:latest
depends_on:
- zookeeper
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: zookeeper:32181
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:29092
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
expose:
- "9092"
- "29092"
cloudera:
image: midsw205/cdh-minimal:latest
expose:
- "8020" # nn
- "50070" # nn http
- "8888" # hue
#ports:
#- "8888:8888"
spark:
image: midsw205/spark-python:0.0.5
stdin_open: true
tty: true
volumes:
- ~/w205:/w205
expose:
- "8888"
ports:
- "8888:8888"
command: bash
depends_on:
- cloudera
environment:
HADOOP_NAMENODE: cloudera
mids:
image: midsw205/base:latest
stdin_open: true
tty: true
volumes:
- ~/w205:/w205