forked from wazuh/wazuh-docker
Bump version
This commit is contained in:
@@ -11,6 +11,13 @@ All notable changes to this project will be documented in this file.
|
||||
### Fixed
|
||||
- Wazuh-docker reinserts cluster settings after resuming containers ([@manuasir](https://github.com/manuasir)) [#213](https://github.com/wazuh/wazuh-docker/pull/213)
|
||||
|
||||
|
||||
## Wazuh Docker v3.9.3_7.1.1-opendistro
|
||||
|
||||
### Added
|
||||
- Support for Amazon Open Distro Docker images.
|
||||
|
||||
|
||||
## Wazuh Docker v3.9.2_7.1.1
|
||||
|
||||
### Added
|
||||
|
||||
@@ -57,7 +57,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.3_7.2.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_7.1.1-opendistro) 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
|
||||
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
WAZUH-DOCKER_VERSION="3.9.3_7.2.0"
|
||||
WAZUH-DOCKER_VERSION="3.9.3_7.1.1"
|
||||
REVISION="3930"
|
||||
+5
-7
@@ -3,7 +3,7 @@ version: '2'
|
||||
|
||||
services:
|
||||
wazuh:
|
||||
image: wazuh/wazuh:3.9.3_7.2.0-oss
|
||||
image: wazuh/wazuh:3.9.3_7.1.1-opendistro
|
||||
hostname: wazuh-manager
|
||||
restart: always
|
||||
ports:
|
||||
@@ -13,16 +13,14 @@ services:
|
||||
- "55000:55000"
|
||||
|
||||
elasticsearch:
|
||||
image: wazuh/wazuh-elasticsearch:3.9.3_7.2.0-oss
|
||||
image: wazuh/wazuh-elasticsearch:3.9.3_7.1.1-opendistro
|
||||
hostname: elasticsearch
|
||||
restart: always
|
||||
ports:
|
||||
- "9200:9200"
|
||||
environment:
|
||||
- "ES_JAVA_OPTS=-Xms1g -Xmx1g"
|
||||
- ELASTIC_CLUSTER=true
|
||||
- CLUSTER_NODE_MASTER=true
|
||||
- CLUSTER_MASTER_NODE_NAME=es01
|
||||
- ELASTIC_CLUSTER=false
|
||||
ulimits:
|
||||
memlock:
|
||||
soft: -1
|
||||
@@ -30,7 +28,7 @@ services:
|
||||
mem_limit: 2g
|
||||
|
||||
kibana:
|
||||
image: wazuh/wazuh-kibana:3.9.3_7.2.0-oss
|
||||
image: wazuh/wazuh-kibana:3.9.3_7.1.1-opendistro
|
||||
hostname: kibana
|
||||
restart: always
|
||||
depends_on:
|
||||
@@ -39,7 +37,7 @@ services:
|
||||
- elasticsearch:elasticsearch
|
||||
- wazuh:wazuh
|
||||
nginx:
|
||||
image: wazuh/wazuh-nginx:3.9.3_7.2.0
|
||||
image: wazuh/wazuh-nginx:3.9.3_7.1.1-opendistro
|
||||
hostname: nginx
|
||||
restart: always
|
||||
environment:
|
||||
|
||||
Reference in New Issue
Block a user