-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
75 lines (69 loc) · 1.64 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
74
75
version: '2'
services:
automl-streams:
build: ./docker/automl-streams
image: automl-streams:latest
volumes:
- ./:/home/jovyan/work
working_dir: /home/jovyan/work
ports:
- 8887:8888
environment:
- JUPYTER_ENABLE_LAB=yes
auto-sklearn:
build: ./docker/auto-sklearn
image: auto-sklearn:latest
volumes:
- ./:/home/jovyan/work
working_dir: /home/jovyan/work
ports:
- 8888:8888
environment:
- JUPYTER_ENABLE_LAB=yes
scikit-multiflow:
build: ./docker/scikit-multiflow
image: scikit-multiflow:latest
volumes:
- ./:/home/jovyan/work
working_dir: /home/jovyan/work
ports:
- 8889:8888
environment:
- JUPYTER_ENABLE_LAB=yes
h2o:
build: ./docker/h2o
image: h2o:latest
volumes:
- ./:/home/jovyan/work
working_dir: /home/jovyan/work
ports:
- 8890:8888
environment:
- JUPYTER_ENABLE_LAB=yes
spark:
build: ./docker/spark
image: spark:latest
volumes:
- ./:/home/jovyan/work
working_dir: /home/jovyan/work
ports:
- 8891:8888
environment:
- JUPYTER_ENABLE_LAB=yes
# Kafka Cluster
zookeeper:
image: confluentinc/cp-zookeeper:5.3.1
ports:
- 2181:2181
environment:
ZOOKEEPER_CLIENT_PORT: 2181
broker:
image: confluentinc/cp-enterprise-kafka:5.3.1
depends_on:
- zookeeper
ports:
- 9092:9092
environment:
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,HOST:PLAINTEXT
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://broker:29092,HOST://localhost:9092