mirror of
https://github.com/valitydev/wazuh-docker.git
synced 2024-11-06 09:45:19 +00:00
de6d0ba8a9
* Add linux agent for tests * Enable agent registration password * Fix log paths; remove postfix * Switch to v6.8.1
56 lines
1.7 KiB
Docker
56 lines
1.7 KiB
Docker
# Wazuh Docker Copyright (C) 2020 Wazuh Inc. (License GPLv2)
|
|
ARG ELASTIC_VERSION=6.8.1
|
|
FROM docker.elastic.co/elasticsearch/elasticsearch-oss:${ELASTIC_VERSION}
|
|
ARG ELASTIC_VERSION
|
|
ARG S3_PLUGIN_URL="https://artifacts.elastic.co/downloads/elasticsearch-plugins/repository-s3/repository-s3-${ELASTIC_VERSION}.zip"
|
|
|
|
ENV ELASTICSEARCH_URL="http://elasticsearch:9200"
|
|
|
|
ENV ALERTS_SHARDS="1" \
|
|
ALERTS_REPLICAS="0"
|
|
|
|
ENV API_USER="foo" \
|
|
API_PASS="bar"
|
|
|
|
ENV XPACK_ML="true"
|
|
|
|
ENV ENABLE_CONFIGURE_S3="false"
|
|
|
|
ARG TEMPLATE_VERSION=v3.12.3
|
|
|
|
# Elasticearch cluster configuration environment variables
|
|
# If ELASTIC_CLUSTER is set to "true" the following variables will be added to the Elasticsearch configuration
|
|
# CLUSTER_INITIAL_MASTER_NODES set to own node by default.
|
|
ENV ELASTIC_CLUSTER="false" \
|
|
CLUSTER_NAME="wazuh" \
|
|
CLUSTER_NODE_MASTER="false" \
|
|
CLUSTER_NODE_DATA="true" \
|
|
CLUSTER_NODE_INGEST="true" \
|
|
CLUSTER_NODE_NAME="wazuh-elasticsearch" \
|
|
CLUSTER_MASTER_NODE_NAME="master-node" \
|
|
CLUSTER_MEMORY_LOCK="true" \
|
|
CLUSTER_DISCOVERY_SERVICE="wazuh-elasticsearch" \
|
|
CLUSTER_NUMBER_OF_MASTERS="2" \
|
|
CLUSTER_MAX_NODES="1" \
|
|
CLUSTER_DELAYED_TIMEOUT="1m" \
|
|
CLUSTER_INITIAL_MASTER_NODES="wazuh-elasticsearch"
|
|
|
|
COPY config/entrypoint.sh /entrypoint.sh
|
|
|
|
RUN chmod 755 /entrypoint.sh
|
|
|
|
COPY --chown=elasticsearch:elasticsearch ./config/load_settings.sh ./
|
|
|
|
RUN chmod +x ./load_settings.sh
|
|
|
|
RUN bin/elasticsearch-plugin install --batch $S3_PLUGIN_URL
|
|
|
|
COPY config/configure_s3.sh ./config/configure_s3.sh
|
|
RUN chmod 755 ./config/configure_s3.sh
|
|
|
|
COPY --chown=elasticsearch:elasticsearch ./config/config_cluster.sh ./
|
|
RUN chmod +x ./config_cluster.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
CMD ["elasticsearch"]
|