diff --git a/README.md b/README.md index 2273f799..5f465561 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Wazuh containers for Docker +# Wazuh containers for Docker In this repository you will find the containers to run: @@ -10,7 +10,7 @@ In addition, a docker-compose file is provided to launch the containers mentione ## Current release -Containers are currently tested on Wazuh version 2.0 and Elastic Stack version 5.5.1. We will do our best to keep this repository updated to latest versions of both Wazuh and Elastic Stack. +Containers are currently tested on Wazuh version 2.0 and Elastic Stack version 5.5.2. We will do our best to keep this repository updated to latest versions of both Wazuh and Elastic Stack. ## Installation notes diff --git a/docker-compose.yml b/docker-compose.yml index e8f5e170..43c62ff4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -36,7 +36,7 @@ services: environment: - LS_HEAP_SIZE=2048m elasticsearch: - image: elasticsearch:5.5.1 + image: elasticsearch:5.5.2 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 c2b80946..3985b3fd 100644 --- a/kibana/Dockerfile +++ b/kibana/Dockerfile @@ -1,4 +1,4 @@ -FROM kibana:5.5.1 +FROM kibana:5.5.2 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 955b494f..2953b597 100644 --- a/kibana/config/wait-for-it.sh +++ b/kibana/config/wait-for-it.sh @@ -5,7 +5,7 @@ set -e host="$1" shift cmd="kibana" -WAZUH_KIBANA_PLUGIN_URL=${WAZUH_KIBANA_PLUGIN_URL:-https://packages.wazuh.com/wazuhapp/wazuhapp-2.1.0_5.5.1.zip} +WAZUH_KIBANA_PLUGIN_URL=${WAZUH_KIBANA_PLUGIN_URL:-https://packages.wazuh.com/wazuhapp/wazuhapp-2.1.0_5.5.2.zip} until curl -XGET $host:9200; do >&2 echo "Elastic is unavailable - sleeping" diff --git a/logstash/Dockerfile b/logstash/Dockerfile index 2014cca8..48db68be 100644 --- a/logstash/Dockerfile +++ b/logstash/Dockerfile @@ -1,4 +1,4 @@ -FROM logstash:5.5.1 +FROM logstash:5.5.2 RUN apt-get update diff --git a/wazuh/Dockerfile b/wazuh/Dockerfile index 4eb102f7..82efb023 100644 --- a/wazuh/Dockerfile +++ b/wazuh/Dockerfile @@ -1,5 +1,5 @@ FROM centos:latest -ARG FILEBEAT_VERSION=5.5.1 +ARG FILEBEAT_VERSION=5.5.2 COPY config/*.repo /etc/yum.repos.d/ RUN yum -y update; yum clean all;