-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.yml
More file actions
41 lines (41 loc) · 869 Bytes
/
base.yml
File metadata and controls
41 lines (41 loc) · 869 Bytes
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
---
version: '3'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:5.6.8
networks:
- alertnet
ports:
- 9200:9200
logstash:
image: docker.elastic.co/logstash/logstash:5.6.8
networks:
- alertnet
volumes:
- ./logstash.conf:/usr/share/logstash/pipeline/logstash.conf
kibana:
image: docker.elastic.co/kibana/kibana:5.6.8
networks:
- alertnet
ports:
- 5601:5601
filebeat:
image: docker.elastic.co/beats/filebeat:5.6.8
networks:
- alertnet
volumes:
- ./filebeat.yml:/usr/share/filebeat/filebeat.yml
- cowrie-log:/opt/cowrie
cowrie:
image: cowrie/cowrie
networks:
- alertnet
ports:
- 2222:2222
volumes:
- cowrie-log:/cowrie/cowrie-git/log
volumes:
cowrie-log:
networks:
alertnet:
external: true