forked from wazuh/wazuh-docker
Upgrade to 3.9.3_6.8.1 version (#207)
This commit is contained in:
committed by
Jesús Linares
parent
c9ed007771
commit
59f60f63b6
+7
-1
@@ -1,7 +1,13 @@
|
||||
# Change Log
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## Wazuh Docker v3.9.0_7.0.0
|
||||
## Wazuh Docker v3.9.3_7.0.0
|
||||
|
||||
## Wazuh Docker v3.9.3_6.8.1
|
||||
|
||||
### Added
|
||||
|
||||
- Update to Wazuh version 3.9.3_6.8.1
|
||||
|
||||
### Added
|
||||
|
||||
|
||||
@@ -63,7 +63,7 @@ In addition, a docker-compose file is provided to launch the containers mentione
|
||||
|
||||
* `stable` branch on correspond to the latest Wazuh-Docker stable version.
|
||||
* `master` branch contains the latest code, be aware of possible bugs on this branch.
|
||||
* `Wazuh.Version_ElasticStack.Version` (for example 3.9.2_6.8.0) branch. This branch contains the current release referenced in Docker Hub. The container images are installed under the current version of this branch.
|
||||
* `Wazuh.Version_ElasticStack.Version` (for example 3.9.3_6.8.1) branch. This branch contains the current release referenced in Docker Hub. The container images are installed under the current version of this branch.
|
||||
|
||||
## Credits and Thank you
|
||||
|
||||
|
||||
+4
-4
@@ -3,7 +3,7 @@ version: '2'
|
||||
|
||||
services:
|
||||
wazuh:
|
||||
image: wazuh/wazuh:3.9.2_6.8.0
|
||||
image: wazuh/wazuh:3.9.3_6.8.1
|
||||
hostname: wazuh-manager
|
||||
restart: always
|
||||
ports:
|
||||
@@ -14,7 +14,7 @@ services:
|
||||
depends_on:
|
||||
- logstash
|
||||
logstash:
|
||||
image: wazuh/wazuh-logstash:3.9.2_6.8.0
|
||||
image: wazuh/wazuh-logstash:3.9.3_6.8.1
|
||||
hostname: logstash
|
||||
restart: always
|
||||
links:
|
||||
@@ -32,7 +32,7 @@ services:
|
||||
- ELASTICSEARCH_URL=https://elasticsearch:9200
|
||||
- SECURITY_CA_PEM=server.TEST-CA-signed.pem
|
||||
elasticsearch:
|
||||
image: wazuh/wazuh-elasticsearch:3.9.2_6.8.0
|
||||
image: wazuh/wazuh-elasticsearch:3.9.3_6.8.1
|
||||
hostname: elasticsearch
|
||||
restart: always
|
||||
ports:
|
||||
@@ -69,7 +69,7 @@ services:
|
||||
hard: -1
|
||||
mem_limit: 2g
|
||||
kibana:
|
||||
image: wazuh/wazuh-kibana:3.9.2_6.8.0
|
||||
image: wazuh/wazuh-kibana:3.9.3_6.8.1
|
||||
hostname: kibana
|
||||
restart: always
|
||||
depends_on:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Wazuh App Copyright (C) 2019 Wazuh Inc. (License GPLv2)
|
||||
FROM docker.elastic.co/elasticsearch/elasticsearch:6.8.0
|
||||
FROM docker.elastic.co/elasticsearch/elasticsearch:6.8.1
|
||||
|
||||
ENV ALERTS_SHARDS="1" \
|
||||
ALERTS_REPLICAS="0"
|
||||
@@ -11,7 +11,7 @@ ENV XPACK_ML="true"
|
||||
|
||||
ENV ENABLE_CONFIGURE_S3="false"
|
||||
|
||||
ENV TEMPLATE_VERSION=v3.9.2
|
||||
ENV TEMPLATE_VERSION=v3.9.3
|
||||
|
||||
|
||||
# This CA is created for testing. Please set your own CA zip containing the key and the signed certificate.
|
||||
@@ -61,7 +61,7 @@ COPY --chown=elasticsearch:elasticsearch ./config/load_settings.sh ./
|
||||
|
||||
RUN chmod +x ./load_settings.sh
|
||||
|
||||
RUN bin/elasticsearch-plugin install --batch https://artifacts.elastic.co/downloads/elasticsearch-plugins/repository-s3/repository-s3-6.8.0.zip
|
||||
RUN bin/elasticsearch-plugin install --batch https://artifacts.elastic.co/downloads/elasticsearch-plugins/repository-s3/repository-s3-6.8.1.zip
|
||||
|
||||
COPY config/configure_s3.sh ./config/configure_s3.sh
|
||||
RUN chmod 755 ./config/configure_s3.sh
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#!/bin/bash
|
||||
# Wazuh App Copyright (C) 2019 Wazuh Inc. (License GPLv2)
|
||||
|
||||
# For more information https://github.com/elastic/elasticsearch-docker/blob/6.8.0/build/elasticsearch/bin/docker-entrypoint.sh
|
||||
# For more information https://github.com/elastic/elasticsearch-docker/blob/6.8.1/build/elasticsearch/bin/docker-entrypoint.sh
|
||||
|
||||
set -e
|
||||
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
# Wazuh App Copyright (C) 2019 Wazuh Inc. (License GPLv2)
|
||||
FROM docker.elastic.co/kibana/kibana:6.8.0
|
||||
ARG WAZUH_APP_VERSION=3.9.2_6.8.0
|
||||
FROM docker.elastic.co/kibana/kibana:6.8.1
|
||||
ARG WAZUH_APP_VERSION=3.9.3_6.8.1
|
||||
USER root
|
||||
|
||||
ADD https://packages-dev.wazuh.com/pre-release/app/kibana/wazuhapp-${WAZUH_APP_VERSION}.zip /tmp
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
# Wazuh App Copyright (C) 2019 Wazuh Inc. (License GPLv2)
|
||||
FROM docker.elastic.co/logstash/logstash:6.8.0
|
||||
FROM docker.elastic.co/logstash/logstash:6.8.1
|
||||
|
||||
COPY --chown=logstash:logstash config/entrypoint.sh /entrypoint.sh
|
||||
|
||||
|
||||
+2
-2
@@ -2,8 +2,8 @@
|
||||
FROM phusion/baseimage:latest
|
||||
|
||||
# Arguments
|
||||
ARG FILEBEAT_VERSION=6.8.0
|
||||
ARG WAZUH_VERSION=3.9.2-1
|
||||
ARG FILEBEAT_VERSION=6.8.1
|
||||
ARG WAZUH_VERSION=3.9.3-1
|
||||
|
||||
# Environment variables
|
||||
ENV API_USER="foo" \
|
||||
|
||||
Reference in New Issue
Block a user