Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions multi-node/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Wazuh App Copyright (C) 2017, Wazuh Inc. (License GPLv2)
services:
wazuh.master:
image: wazuh/wazuh-manager:4.14.4-rc1
image: wazuh/wazuh-manager:4.14.4
hostname: wazuh.master
restart: always
ulimits:
Expand Down Expand Up @@ -43,7 +43,7 @@ services:
- ./config/wazuh_cluster/wazuh_manager.conf:/wazuh-config-mount/etc/ossec.conf

wazuh.worker:
image: wazuh/wazuh-manager:4.14.4-rc1
image: wazuh/wazuh-manager:4.14.4
hostname: wazuh.worker
restart: always
ulimits:
Expand Down Expand Up @@ -79,7 +79,7 @@ services:
- ./config/wazuh_cluster/wazuh_worker.conf:/wazuh-config-mount/etc/ossec.conf

wazuh1.indexer:
image: wazuh/wazuh-indexer:4.14.4-rc1
image: wazuh/wazuh-indexer:4.14.4
hostname: wazuh1.indexer
restart: always
ports:
Expand All @@ -105,7 +105,7 @@ services:
- ./config/wazuh_indexer/internal_users.yml:/usr/share/wazuh-indexer/config/opensearch-security/internal_users.yml

wazuh2.indexer:
image: wazuh/wazuh-indexer:4.14.4-rc1
image: wazuh/wazuh-indexer:4.14.4
hostname: wazuh2.indexer
restart: always
environment:
Expand All @@ -127,7 +127,7 @@ services:
- ./config/wazuh_indexer/internal_users.yml:/usr/share/wazuh-indexer/config/opensearch-security/internal_users.yml

wazuh3.indexer:
image: wazuh/wazuh-indexer:4.14.4-rc1
image: wazuh/wazuh-indexer:4.14.4
hostname: wazuh3.indexer
restart: always
environment:
Expand All @@ -149,7 +149,7 @@ services:
- ./config/wazuh_indexer/internal_users.yml:/usr/share/wazuh-indexer/config/opensearch-security/internal_users.yml

wazuh.dashboard:
image: wazuh/wazuh-dashboard:4.14.4-rc1
image: wazuh/wazuh-dashboard:4.14.4
hostname: wazuh.dashboard
restart: always
ports:
Expand Down
6 changes: 3 additions & 3 deletions single-node/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Wazuh App Copyright (C) 2017, Wazuh Inc. (License GPLv2)
services:
wazuh.manager:
image: wazuh/wazuh-manager:4.14.4-rc1
image: wazuh/wazuh-manager:4.14.4
hostname: wazuh.manager
restart: always
ulimits:
Expand Down Expand Up @@ -44,7 +44,7 @@ services:
- ./config/wazuh_cluster/wazuh_manager.conf:/wazuh-config-mount/etc/ossec.conf

wazuh.indexer:
image: wazuh/wazuh-indexer:4.14.4-rc1
image: wazuh/wazuh-indexer:4.14.4
hostname: wazuh.indexer
restart: always
ports:
Expand All @@ -69,7 +69,7 @@ services:
- ./config/wazuh_indexer/internal_users.yml:/usr/share/wazuh-indexer/config/opensearch-security/internal_users.yml

wazuh.dashboard:
image: wazuh/wazuh-dashboard:4.14.4-rc1
image: wazuh/wazuh-dashboard:4.14.4
hostname: wazuh.dashboard
restart: always
ports:
Expand Down
2 changes: 1 addition & 1 deletion wazuh-agent/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Wazuh App Copyright (C) 2017, Wazuh Inc. (License GPLv2)
services:
wazuh.agent:
image: wazuh/wazuh-agent:4.14.4-rc1
image: wazuh/wazuh-agent:4.14.4
restart: always
environment:
- WAZUH_MANAGER_SERVER=<WAZUH_MANAGER_IP>
Expand Down
Loading