File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Change Log
22All 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
Original file line number Diff line number Diff line change 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 "
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ version: '2'
33
44services :
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 :
Original file line number Diff line number Diff line change 11# Wazuh Docker Copyright (C) 2020 Wazuh Inc. (License GPLv2)
2- ARG ELASTIC_VERSION=7.6.1
2+ ARG ELASTIC_VERSION=7.6.2
33FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION}
44ARG ELASTIC_VERSION
55ARG 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
1717ENV 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
Original file line number Diff line number Diff line change 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
33USER 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
66ARG WAZUH_APP_VERSION="${WAZUH_VERSION}_${ELASTIC_VERSION}"
77
88WORKDIR /usr/share/kibana
Original file line number Diff line number Diff line change 11# Wazuh Docker Copyright (C) 2020 Wazuh Inc. (License GPLv2)
22FROM 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
88ENV 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.
1414RUN set -x && echo "deb https://packages.wazuh.com/3.x/apt/ stable main" | tee /etc/apt/sources.list.d/wazuh.list && \
Original file line number Diff line number Diff line change 5252fi
5353rm /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+
5564touch ${DATA_PATH} /process_list
5665chgrp ossec ${DATA_PATH} /process_list
5766chmod g+rw ${DATA_PATH} /process_list
@@ -143,4 +152,4 @@ echo "Change Wazuh API user credentials"
143152change_user=" node htpasswd -b -c user $API_USER $API_PASS "
144153eval $change_user
145154
146- popd
155+ popd
Original file line number Diff line number Diff line change 22DATA_DIRS[((i++))]="api/configuration"
33DATA_DIRS[((i++))]="etc"
44DATA_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"
146DATA_DIRS[((i++))]="var/multigroups"
157export DATA_DIRS
You can’t perform that action at this time.
0 commit comments