Skip to content

Commit c0a503b

Browse files
author
Manuel J. Bernal
authored
Merge pull request #325 from wazuh/release-wazuh_3.12.1_7.6.2
Release wazuh 3.12.1 7.6.2
2 parents edae7d3 + 966a3dc commit c0a503b

8 files changed

Lines changed: 35 additions & 24 deletions

File tree

CHANGELOG.md

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

4+
## Wazuh Docker v3.12.1_7.6.2
5+
6+
### Added
7+
8+
- Update to Wazuh version 3.12.1_7.6.2
9+
10+
### Fixed
11+
12+
- Agent timestamp not being properly saved ([@xr09](https://github.com/xr09)) [#323](https://github.com/wazuh/wazuh-docker/pull/323)
13+
414

515
## Wazuh Docker v3.12.0_7.6.1
616

VERSION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
WAZUH-DOCKER_VERSION="3.12.0_7.6.1"
2-
REVISION="31200"
1+
WAZUH-DOCKER_VERSION="3.12.1_7.6.2"
2+
REVISION="31210"

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.12.0_7.6.1
6+
image: wazuh/wazuh:3.12.1_7.6.2
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.12.0_7.6.1
16+
image: wazuh/wazuh-elasticsearch:3.12.1_7.6.2
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.12.0_7.6.1
33+
image: wazuh/wazuh-kibana:3.12.1_7.6.2
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.12.0_7.6.1
43+
image: wazuh/wazuh-nginx:3.12.1_7.6.2
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.6.1
2+
ARG ELASTIC_VERSION=7.6.2
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.12.0
19+
ARG TEMPLATE_VERSION=v3.12.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.6.1
2+
FROM docker.elastic.co/kibana/kibana:7.6.2
33
USER kibana
4-
ARG ELASTIC_VERSION=7.6.1
5-
ARG WAZUH_VERSION=3.12.0
4+
ARG ELASTIC_VERSION=7.6.2
5+
ARG WAZUH_VERSION=3.12.1
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:latest
33

4-
ARG FILEBEAT_VERSION=7.6.1
4+
ARG FILEBEAT_VERSION=7.6.2
55

6-
ARG WAZUH_VERSION=3.12.0-1
6+
ARG WAZUH_VERSION=3.12.1-1
77

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

11-
ARG TEMPLATE_VERSION="v3.12.0"
11+
ARG TEMPLATE_VERSION="v3.12.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: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,15 @@ then
5252
fi
5353
rm /var/ossec/queue/db/.template.db
5454

55+
# copy missing files from queue-template (in case this is an upgrade from previous versions)
56+
for filename in /var/ossec/queue-template/*; do
57+
fname=$(basename $filename)
58+
echo $fname
59+
if test ! -e "/var/ossec/data/queue/$fname"; then
60+
cp -rp "/var/ossec/queue-template/$fname" /var/ossec/data/queue/
61+
fi
62+
done
63+
5564
touch ${DATA_PATH}/process_list
5665
chgrp ossec ${DATA_PATH}/process_list
5766
chmod g+rw ${DATA_PATH}/process_list
@@ -143,4 +152,4 @@ echo "Change Wazuh API user credentials"
143152
change_user="node htpasswd -b -c user $API_USER $API_PASS"
144153
eval $change_user
145154

146-
popd
155+
popd

wazuh/config/data_dirs.env

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,6 @@ i=0
22
DATA_DIRS[((i++))]="api/configuration"
33
DATA_DIRS[((i++))]="etc"
44
DATA_DIRS[((i++))]="logs"
5-
DATA_DIRS[((i++))]="queue/db"
6-
DATA_DIRS[((i++))]="queue/rootcheck"
7-
DATA_DIRS[((i++))]="queue/agent-groups"
8-
DATA_DIRS[((i++))]="queue/agent-info"
9-
DATA_DIRS[((i++))]="queue/agents-timestamp"
10-
DATA_DIRS[((i++))]="queue/agentless"
11-
DATA_DIRS[((i++))]="queue/cluster"
12-
DATA_DIRS[((i++))]="queue/rids"
13-
DATA_DIRS[((i++))]="queue/fts"
5+
DATA_DIRS[((i++))]="queue"
146
DATA_DIRS[((i++))]="var/multigroups"
157
export DATA_DIRS

0 commit comments

Comments
 (0)