-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
53 lines (52 loc) · 1.03 KB
/
docker-compose.yaml
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
version: '2'
services:
elasticsearch:
image: elasticsearch:5.2.1
container_name: elasticsearch
ports:
- 9200:9200
logstash:
build:
context: logstash
container_name: logstash
depends_on:
- elasticsearch
privileged: true
tty: true
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
kibana:
build:
context: kibana
container_name: kibana
ports:
- 5601:5601
privileged: true
tty: true
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
manageiq:
build: manageiq
container_name: manageiq
ports:
- 8443:443
privileged: true
tty: true
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
zookeeper:
image: zookeeper
container_name: zookeeper
ports:
- 2181:2181
kafka:
build: kafka
container_name: kafka
depends_on:
- zookeeper
# prometheus:
# image: prom/prometheus
# ports:
# - 9000:9000
# - 9090:9090
#