Last active
July 31, 2022 15:34
-
-
Save elwali10/b3602540e1e8e953733fc276330e0291 to your computer and use it in GitHub Desktop.
docker compose for Wazuh manager4.3.6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Wazuh App Copyright (C) 2017, Wazuh Inc. (License GPLv2) | |
version: '3.7' | |
services: | |
wazuh: | |
image: wazuh/wazuh-manager:4.3.6 | |
hostname: wazuh-manager | |
restart: always | |
ports: | |
- "1515:1515" | |
- "1514:1514" | |
- "514:514/udp" | |
- "55000:55000" | |
environment: | |
- INDEXER_URL=https://CHANGE_THIS_WITH_ELASTICIP:9200 | |
- INDEXER_USERNAME=admin | |
- INDEXER_PASSWORD=SecretPassword | |
- FILEBEAT_SSL_VERIFICATION_MODE=full | |
- SSL_CERTIFICATE_AUTHORITIES=/etc/ssl/root-ca.pem | |
- SSL_CERTIFICATE=/etc/ssl/filebeat.pem | |
- SSL_KEY=/etc/ssl/filebeat.key | |
- API_USERNAME=wazuh-wui | |
- API_PASSWORD=MyS3cr37P450r.*- | |
volumes: | |
- wazuh_api_configuration:/var/ossec/api/configuration | |
- wazuh_etc:/var/ossec/etc | |
- wazuh_logs:/var/ossec/logs | |
- wazuh_queue:/var/ossec/queue | |
- wazuh_var_multigroups:/var/ossec/var/multigroups | |
- wazuh_integrations:/var/ossec/integrations | |
- wazuh_active_response:/var/ossec/active-response/bin | |
- wazuh_agentless:/var/ossec/agentless | |
- wazuh_wodles:/var/ossec/wodles | |
- filebeat_etc:/etc/filebeat | |
- filebeat_var:/var/lib/filebeat | |
- ./config/wazuh_indexer_ssl_certs/root-ca-manager.pem:/etc/ssl/root-ca.pem | |
- ./config/wazuh_indexer_ssl_certs/wazuh.master.pem:/etc/ssl/filebeat.pem | |
- ./config/wazuh_indexer_ssl_certs/wazuh.master-key.pem:/etc/ssl/filebeat.key | |
- ./0-wazuh-custom-init:/etc/cont-init.d/0-wazuh-init | |
volumes: | |
wazuh_api_configuration: | |
wazuh_etc: | |
wazuh_logs: | |
wazuh_queue: | |
wazuh_var_multigroups: | |
wazuh_integrations: | |
wazuh_active_response: | |
wazuh_agentless: | |
wazuh_wodles: | |
filebeat_etc: | |
filebeat_var: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment