Wazuh - Docker containers
Go to file
2019-06-04 15:33:45 +02:00
elasticsearch Fixed template URL 2019-05-22 12:21:55 +02:00
kibana Fixed conflicts 2019-05-21 23:53:30 +02:00
logstash Bump version 2019-05-21 23:45:55 +02:00
nginx Adding comments 2019-03-26 13:26:09 +01:00
wazuh Bump version 2019-05-21 23:45:55 +02:00
CHANGELOG.md Bump version 2019-05-21 23:45:55 +02:00
docker-compose.yml Bump version 2019-05-21 23:45:55 +02:00
LICENSE Changing copyright year to 2019 2019-03-15 15:11:49 +01:00
README.md Bump version 2019-05-21 23:45:55 +02:00
VERSION Bump version 2019-05-21 23:47:05 +02:00

Wazuh containers for Docker

Slack Email Documentation Documentation

In this repository you will find the containers to run:

  • wazuh: It runs the Wazuh manager, Wazuh API and Filebeat (for integration with Elastic Stack)
  • wazuh-logstash: It is used to receive alerts generated by the manager and feed Elasticsearch using an alerts template
  • wazuh-kibana: Provides a web user interface to browse through alerts data. It includes Wazuh plugin for Kibana, that allows you to visualize agents configuration and status.
  • wazuh-nginx: Proxies the Kibana container, adding HTTPS (via self-signed SSL certificate) and Basic authentication.
  • wazuh-elasticsearch: An Elasticsearch container (working as a single-node cluster) using Elastic Stack Docker images. Be aware to increase the vm.max_map_count setting, as it's detailed in the Wazuh documentation.

In addition, a docker-compose file is provided to launch the containers mentioned above.

  • Elasticsearch cluster. In the Elasticsearch Dockerfile we can visualize variables to configure an Elasticsearch Cluster. These variables are used in the file config_cluster.sh to set them in the elasticsearch.yml configuration file. You can see the meaning of the node variables here and other cluster settings here.

Documentation

Directory structure

wazuh-docker
├── docker-compose.yml
├── kibana
│   ├── config
│   │   ├── entrypoint.sh
│   │   └── kibana.yml
│   └── Dockerfile
├── LICENSE
├── logstash
│   ├── config
│   │   ├── 01-wazuh.conf
│   │   └── run.sh
│   └── Dockerfile
├── nginx
│   ├── config
│   │   └── entrypoint.sh
│   └── Dockerfile
├── README.md
├── CHANGELOG.md
├── VERSION
├── test.txt
└── wazuh
    ├── config
    │   ├── data_dirs.env
    │   ├── entrypoint.sh
    │   ├── filebeat.runit.service
    │   ├── filebeat.yml
    │   ├── init.bash
    │   ├── postfix.runit.service
    │   ├── wazuh-api.runit.service
    │   └── wazuh.runit.service
    └── Dockerfile

Branches

  • 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.1_6.8.2) 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

These Docker containers are based on:

We thank you them and everyone else who has contributed to this project.

Wazuh App Copyright (C) 2019 Wazuh Inc. (License GPLv2)

Web references

Wazuh website