This repository has been archived by the owner on Jul 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
63 lines (58 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
version: '3'
services:
dns:
image: resystit/bind9@sha256:71c76b99115bf14171925fd5c4ceb799f4820b3625be6149e95c443127748e6e
volumes:
- ./named.conf:/etc/bind/named.conf:ro
- ./db.honeypot.local:/etc/bind/master/db.honeypot.local:ro
ports:
- 127.0.0.1:5053:53/tcp
- 127.0.0.1:5053:53/udp
restart: unless-stopped
entrypoint: named -c /etc/bind/named.conf -g
es01:
image: docker.elastic.co/elasticsearch/elasticsearch:7.5.1
environment:
- node.name=es01
- cluster.name=es-docker-cluster
- cluster.initial_master_nodes=es01
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
memlock:
soft: -1
hard: -1
volumes:
- esdata:/usr/share/elasticsearch/data
restart: unless-stopped
kib01:
image: docker.elastic.co/kibana/kibana:7.5.1
ports:
- 127.0.0.1:5601:5601
environment:
ELASTICSEARCH_URL: http://es01:9200
ELASTICSEARCH_HOSTS: http://es01:9200
depends_on:
- es01
restart: unless-stopped
dnsbeat:
image: docker.pkg.github.com/0xthiebaut/dnsbeat/dnsbeat:v1
volumes:
- ./dnsbeat.yml:/usr/share/dnsbeat/dnsbeat.yml
depends_on:
- dns
- es01
- kib01
restart: unless-stopped
outliers:
image: nvisobe/ee-outliers:0.2
volumes:
- ./outliers.conf:/etc/outliers/outliers.conf:ro
depends_on:
- es01
- dnsbeat
entrypoint: python3 outliers.py daemon --config /etc/outliers/outliers.conf
restart: unless-stopped
volumes:
esdata:
driver: local