-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (38 loc) · 885 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
41 lines (38 loc) · 885 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
services:
elasticsearch:
image: "docker.elastic.co/elasticsearch/elasticsearch:7.13.3"
container_name: elasticsearch
ports:
- '9200:9200'
environment:
- discovery.type=single-node
volumes:
- esVolume:/usr/share/elasticsearch/data
ulimits:
memlock:
soft: -1
hard: -1
kibana:
image: "docker.elastic.co/kibana/kibana:7.13.3"
container_name: kibana
ports:
- '5601:5601'
environment:
ELASTICSEARCH_URL: 'http://elasticsearch:9200'
ELASTICSEARCH_HOSTS: '["http://elasticsearch:9200"]'
depends_on:
- elasticsearch
wappalyzer-fetch:
build:
dockerfile: Dockerfile
context: .
depends_on:
- elasticsearch
links:
- elasticsearch
init: true
volumes:
- ./crontab:/var/spool/cron/crontabs/root
volumes:
esVolume:
driver: local