From 816b93f45596030da6e1d212774c908d24e9e928 Mon Sep 17 00:00:00 2001 From: Jose Luis Date: Thu, 6 Apr 2017 09:35:05 -0400 Subject: [PATCH] update to version ELK 5.3.0 --- README.md | 6 +++--- docker-compose.yml | 2 +- kibana/Dockerfile | 2 +- kibana/config/wait-for-it.sh | 2 +- logstash/Dockerfile | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 4b65fd05..72dbe40f 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ The first time than you runt this container can take a while until kibana finish the configuration, the Wazuh plugin can take a few minutes until finish the instalation, please be patient. -# Docker container Wazuh + ELK +# Docker container Wazuh + ELK(5.3.0) This Docker container source files can be found in our [Wazuh Github repository](https://github.com/wazuh/wazuh). It includes both an OSSEC manager and an Elasticsearch single-node cluster, with Logstash and Kibana. You can find more information on how these components work together in our documentation. @@ -201,7 +201,7 @@ In order to persist Elasticsearch data even after removing the Elasticsearch con ```yml elasticsearch: - image: wazuh/wazuh-elasticsearch:latest + image: elasticsearch:5.3.0 hostname: elasticsearch command: elasticsearch -Des.network.host=_non_loopback_ -Des.cluster.name: my-cluster ports: @@ -265,7 +265,7 @@ services: environment: - LS_HEAP_SIZE=2048m elasticsearch: - image: elasticsearch:5.2.2 + image: elasticsearch:5.3.0 hostname: elasticsearch restart: always command: elasticsearch -E node.name="node-1" -E cluster.name="wazuh" -E network.host=0.0.0.0 diff --git a/docker-compose.yml b/docker-compose.yml index e1f0933d..c5f22770 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -36,7 +36,7 @@ services: environment: - LS_HEAP_SIZE=2048m elasticsearch: - image: elasticsearch:5.2.2 + image: elasticsearch:5.3.0 hostname: elasticsearch restart: always command: elasticsearch -E node.name="node-1" -E cluster.name="wazuh" -E network.host=0.0.0.0 diff --git a/kibana/Dockerfile b/kibana/Dockerfile index 9f97787a..412dd99d 100644 --- a/kibana/Dockerfile +++ b/kibana/Dockerfile @@ -1,4 +1,4 @@ -FROM kibana:5.2.2 +FROM kibana:5.3.0 RUN apt-get update && apt-get install -y curl diff --git a/kibana/config/wait-for-it.sh b/kibana/config/wait-for-it.sh index 3b112ce4..19b28c2e 100644 --- a/kibana/config/wait-for-it.sh +++ b/kibana/config/wait-for-it.sh @@ -18,7 +18,7 @@ sleep 30 if /usr/share/kibana/bin/kibana-plugin list | grep wazuh; then echo "Wazuh APP already installed" else - /usr/share/kibana/bin/kibana-plugin install https://packages.wazuh.com/wazuhapp/wazuhapp-2.0_5.2.2.zip + /usr/share/kibana/bin/kibana-plugin install https://packages.wazuh.com/wazuhapp/wazuhapp-2.0_5.3.0.zip fi exec $cmd diff --git a/logstash/Dockerfile b/logstash/Dockerfile index 9f9ddbf3..e7b9417e 100644 --- a/logstash/Dockerfile +++ b/logstash/Dockerfile @@ -1,4 +1,4 @@ -FROM logstash:5.2.2 +FROM logstash:5.3.0 RUN apt-get update