Skip to content

Commit 1f825c1

Browse files
committed
Bump version
1 parent 3cfa63f commit 1f825c1

9 files changed

Lines changed: 22 additions & 17 deletions

File tree

CHANGELOG.md

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

4+
## Wazuh Docker v3.13.1_7.8.0
5+
6+
### Added
7+
8+
- Update to Wazuh version 3.13.1_7.8.0
9+
410
## Wazuh Docker v3.13.0_7.7.1
511

612
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ In addition, a docker-compose file is provided to launch the containers mentione
5757

5858
* `stable` branch on correspond to the latest Wazuh-Docker stable version.
5959
* `master` branch contains the latest code, be aware of possible bugs on this branch.
60-
* `Wazuh.Version_ElasticStack.Version` (for example 3.10.2_7.5.0) branch. This branch contains the current release referenced in Docker Hub. The container images are installed under the current version of this branch.
60+
* `Wazuh.Version_ElasticStack.Version` (for example 3.13.1_7.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.
6161

6262
## Credits and Thank you
6363

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.0_7.7.1"
2-
REVISION="31300"
1+
WAZUH-DOCKER_VERSION="3.13.1_7.8.0"
2+
REVISION="31310"

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.0_7.7.1
6+
build: wazuh
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.0_7.7.1
16+
build: elasticsearch
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.0_7.7.1
33+
build: kibana
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.0_7.7.1
43+
build: nginx
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.7.1
2+
ARG ELASTIC_VERSION=7.8.0
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.0
19+
ARG TEMPLATE_VERSION=v3.13.1
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.7.1
2+
FROM docker.elastic.co/kibana/kibana:7.8.0
33
USER kibana
4-
ARG ELASTIC_VERSION=7.7.1
5-
ARG WAZUH_VERSION=3.13.0
4+
ARG ELASTIC_VERSION=7.8.0
5+
ARG WAZUH_VERSION=3.13.1
66
ARG WAZUH_APP_VERSION="${WAZUH_VERSION}_${ELASTIC_VERSION}"
77

88
WORKDIR /usr/share/kibana

kibana/config/xpack_config.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ then
1111
[xpack.ml.enabled]=$XPACK_ML
1212
[xpack.canvas.enabled]=$XPACK_CANVAS
1313
[xpack.infra.enabled]=$XPACK_INFRA
14-
[xpack.monitoring.enabled]=$XPACK_MONITORING
14+
[monitoring.enabled]=$XPACK_MONITORING
1515
[console.enabled]=$XPACK_DEVTOOLS
1616
)
1717
for i in "${!CONFIG_MAP[@]}"

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:latest
33

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

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

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

11-
ARG TEMPLATE_VERSION="v3.13.0"
11+
ARG TEMPLATE_VERSION="v3.13.1"
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 && \

wazuh/config/00-wazuh.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ if [ -e ${WAZUH_INSTALL_PATH}/etc-template ]
5050
then
5151
cp -p /var/ossec/etc-template/internal_options.conf /var/ossec/etc/internal_options.conf
5252
fi
53-
rm /var/ossec/queue/db/.template.db
5453

5554
# copy missing files from queue-template (in case this is an upgrade from previous versions)
5655
for filename in /var/ossec/queue-template/*; do

0 commit comments

Comments
 (0)