-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathdocker-compose.yml
51 lines (49 loc) · 1.11 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
---
version: '2'
services:
confluent:
image: 'simonaubury/ksql-clickstream-plane:latest'
build:
context: docker/
hostname: confluent
ports:
- "2181:2181"
- "3030:3030"
- "8081-8083:8081-8083"
- "9581-9585:9581-9585"
- "9092:9092"
- '8088:8088'
command: "tail -f /dev/null"
environment:
TZ: ${TZ_SET}
volumes:
- ./scripts:/scripts
- ./raspberry-pi:/raspberry-pi
extra_hosts:
- "moby:127.0.0.1"
elasticsearch:
image: 'docker.elastic.co/elasticsearch/elasticsearch-oss:${ELST_VER}'
hostname: elasticsearch
ports:
- "9200:9200"
- "9300:9300"
depends_on:
- confluent
environment:
TZ: ${TZ_SET}
discovery.type: 'single-node'
extra_hosts:
- "moby:127.0.0.1"
kibana:
image: 'docker.elastic.co/kibana/kibana-oss:${ELST_VER}'
volumes:
- ./config/kibana.yml:/usr/share/kibana/config/kibana.yml
hostname: kibana
environment:
TZ: ${TZ_SET}
ports:
- "5601:5601"
depends_on:
- elasticsearch
extra_hosts:
- "moby:127.0.0.1"