From c9a3755363b21adf6e92a14ed32af3135c92afcb Mon Sep 17 00:00:00 2001 From: Thorsten Schifferdecker Date: Thu, 25 Oct 2018 22:30:26 +0200 Subject: [PATCH] bump to version 6.4.2 Signed-off-by: Thorsten Schifferdecker --- README.md | 6 +++--- filebeat-customized/Dockerfile | 2 +- stack.yml | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 922e4f6..f207d15 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Instructions --- 1) Setup an Docker Swarm, label an swarm node for elasticsearch usage and -modify kernel settings, see [Elasticsearch documentation](https://www.elastic.co/guide/en/elasticsearch/reference/6.3/docker.html) +modify kernel settings, see [Elasticsearch documentation](https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html) ``` echo "vm.max_map_count=262144" > /etc/sysctl.d/99-docker-elasticsearch.conf @@ -35,11 +35,11 @@ Add Node label for elasticsearch docker node update --label-add elasticsearch=es1 ``` -2) Build your customized filebeat docker image, filebeat version 6.3.0 is used. +2) Build your customized filebeat docker image ``` cd filebeat-customized -docker build -t filebeat:6.3.0-custom . +docker build -t filebeat:6.4.2-custom . ``` Deploy the image to your docker swarm infrastructure via a (private) docker registry, like Docker Index aka [Docker Hub](https://hub.docker.com/) diff --git a/filebeat-customized/Dockerfile b/filebeat-customized/Dockerfile index 9966e84..3d859ae 100644 --- a/filebeat-customized/Dockerfile +++ b/filebeat-customized/Dockerfile @@ -1,5 +1,5 @@ # a customized filebeat docker image based on offical filebeat -FROM docker.elastic.co/beats/filebeat:6.3.0 +FROM docker.elastic.co/beats/filebeat:6.4.2 # we start filebeat under root, because we need the permission to # read the information from the docker container path, mounted inside it diff --git a/stack.yml b/stack.yml index b062bef..5866e8b 100644 --- a/stack.yml +++ b/stack.yml @@ -7,7 +7,7 @@ version: '3' services: elasticsearch: - image: docker.elastic.co/elasticsearch/elasticsearch:${VERSION:-6.3.0} + image: docker.elastic.co/elasticsearch/elasticsearch:${VERSION:-6.4.2} environment: ES_JAVA_OPTS: '-Xms256m -Xmx256m' xpack.security.enabled: 'false' @@ -23,7 +23,7 @@ services: - node.labels.elasticsearch == es1 filebeat: - image: filebeat:${VERSION:-6.3.0}-custom + image: filebeat:${VERSION:-6.4.2}-custom environment: ELASTICSEARCH_HOST: 'elasticsearch' ELASTICSEARCH_PORT: '9200' @@ -36,7 +36,7 @@ services: delay: 30s kibana: - image: docker.elastic.co/kibana/kibana:${VERSION:-6.3.0} + image: docker.elastic.co/kibana/kibana:${VERSION:-6.4.2} ports: - '80:5601' depends_on: