Skip to content

Commit 925521d

Browse files
author
Manuel J. Bernal
authored
Merge pull request #383 from wazuh/release-3.13.2_7.9.1
Release 3.13.2 7.9.1
2 parents e9fec0e + 2028d86 commit 925521d

6 files changed

Lines changed: 28 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,26 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## Wazuh Docker v3.13.2_7.9.1
5+
6+
### Added
7+
8+
- Update to Wazuh version 3.13.2_7.9.1
9+
- Add CLUSTER_NETWORK_HOST environment variable ([@jfut](https://github.com/jfut)) [#372](https://github.com/wazuh/wazuh-docker/pull/372)
10+
11+
### Fixed
12+
13+
- Too many redirects when running on port 80 ([@chowmean](https://github.com/chowmean)) [#377](https://github.com/wazuh/wazuh-docker/pull/377)
14+
- Move Filebeat installation to build stage ([@xr09](https://github.com/xr09)) [#378](https://github.com/wazuh/wazuh-docker/pull/378)
15+
16+
417
## Wazuh Docker v3.13.1_7.8.0
518

619
### Added
720

821
- Update to Wazuh version 3.13.1_7.8.0
922

23+
1024
## Wazuh Docker v3.13.0_7.7.1
1125

1226
### Added

VERSION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
WAZUH-DOCKER_VERSION="3.13.1_7.8.0"
2-
REVISION="31310"
1+
WAZUH-DOCKER_VERSION="3.13.2_7.9.1"
2+
REVISION="31320"

docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '2'
33

44
services:
55
wazuh:
6-
image: wazuh/wazuh:3.13.1_7.8.0
6+
image: wazuh/wazuh:3.13.2_7.9.1
77
hostname: wazuh-manager
88
restart: always
99
ports:
@@ -13,7 +13,7 @@ services:
1313
- "55000:55000"
1414

1515
elasticsearch:
16-
image: wazuh/wazuh-elasticsearch:3.13.1_7.8.0
16+
image: wazuh/wazuh-elasticsearch:3.13.2_7.9.1
1717
hostname: elasticsearch
1818
restart: always
1919
ports:
@@ -30,7 +30,7 @@ services:
3030
mem_limit: 2g
3131

3232
kibana:
33-
image: wazuh/wazuh-kibana:3.13.1_7.8.0
33+
image: wazuh/wazuh-kibana:3.13.2_7.9.1
3434
hostname: kibana
3535
restart: always
3636
depends_on:
@@ -40,7 +40,7 @@ services:
4040
- wazuh:wazuh
4141

4242
nginx:
43-
image: wazuh/wazuh-nginx:3.13.1_7.8.0
43+
image: wazuh/wazuh-nginx:3.13.2_7.9.1
4444
hostname: nginx
4545
restart: always
4646
environment:

elasticsearch/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Wazuh Docker Copyright (C) 2020 Wazuh Inc. (License GPLv2)
2-
ARG ELASTIC_VERSION=7.8.0
2+
ARG ELASTIC_VERSION=7.9.1
33
FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION}
44
ARG ELASTIC_VERSION
55
ARG S3_PLUGIN_URL="https://artifacts.elastic.co/downloads/elasticsearch-plugins/repository-s3/repository-s3-${ELASTIC_VERSION}.zip"
@@ -16,7 +16,7 @@ ENV XPACK_ML="true"
1616

1717
ENV ENABLE_CONFIGURE_S3="false"
1818

19-
ARG TEMPLATE_VERSION=v3.13.1
19+
ARG TEMPLATE_VERSION=v3.13.2
2020

2121
# Elasticearch cluster configuration environment variables
2222
# If ELASTIC_CLUSTER is set to "true" the following variables will be added to the Elasticsearch configuration

kibana/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Wazuh Docker Copyright (C) 2020 Wazuh Inc. (License GPLv2)
2-
FROM docker.elastic.co/kibana/kibana:7.8.0
2+
FROM docker.elastic.co/kibana/kibana:7.9.1
33
USER kibana
4-
ARG ELASTIC_VERSION=7.8.0
5-
ARG WAZUH_VERSION=3.13.1
4+
ARG ELASTIC_VERSION=7.9.1
5+
ARG WAZUH_VERSION=3.13.2
66
ARG WAZUH_APP_VERSION="${WAZUH_VERSION}_${ELASTIC_VERSION}"
77

88
WORKDIR /usr/share/kibana

wazuh/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Wazuh Docker Copyright (C) 2020 Wazuh Inc. (License GPLv2)
22
FROM phusion/baseimage:0.10.2
33

4-
ARG FILEBEAT_VERSION=7.8.0
4+
ARG FILEBEAT_VERSION=7.9.1
55

6-
ARG WAZUH_VERSION=3.13.1-1
6+
ARG WAZUH_VERSION=3.13.2-1
77

88
ENV API_USER="foo" \
99
API_PASS="bar"
1010

11-
ARG TEMPLATE_VERSION="v3.13.1"
11+
ARG TEMPLATE_VERSION="v3.13.2"
1212

1313
# Set repositories.
1414
RUN set -x && echo "deb https://packages.wazuh.com/3.x/apt/ stable main" | tee /etc/apt/sources.list.d/wazuh.list && \

0 commit comments

Comments
 (0)