added alot of notebook and docker stuff

logstash config
This commit is contained in:
root
2018-04-03 10:28:02 +02:00
parent e85d8a9f85
commit a6cc17b436
11 changed files with 310 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
version: '2'
services:
elasticsearch:
image:
elasticsearch
container_name: elasticsearch
hostname: elasticsearch
ports:
- "9200:9200"
- "9300:9300"
volumes:
- elastic-data:/usr/share/elasticsearch/data
environment:
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms2g -Xmx2g"
ulimits:
memlock:
soft: -1
hard: -1
networks:
- elk
kibana:
image:
kibana
hostname: kibana
ports:
- "5601:5601"
networks:
- elk
depends_on:
- elasticsearch
networks:
elk:
driver: bridge
volumes:
elastic-data:
driver: local