mirror of
https://github.com/wazuh/wazuh-docker.git
synced 2025-10-23 06:11:57 +00:00
51 lines
2.2 KiB
Docker
51 lines
2.2 KiB
Docker
# Wazuh Docker Copyright (C) 2017, Wazuh Inc. (License GPLv2)
|
|
FROM ubuntu:focal
|
|
|
|
ARG WAZUH_VERSION=4.3.1
|
|
ARG TEMPLATE_VERSION=4.3
|
|
ARG FILEBEAT_CHANNEL=filebeat-oss
|
|
ARG FILEBEAT_VERSION=7.10.2
|
|
ARG WAZUH_FILEBEAT_MODULE="wazuh-filebeat-0.1.tar.gz"
|
|
|
|
RUN apt-get update && apt install curl apt-transport-https lsb-release gnupg -y
|
|
|
|
RUN apt-key adv --fetch-keys https://packages.wazuh.com/key/GPG-KEY-WAZUH && \
|
|
echo "deb https://packages.wazuh.com/4.x/apt/ stable main" | tee -a /etc/apt/sources.list.d/wazuh.list && \
|
|
apt-get update && \
|
|
apt-get install wazuh-manager=${WAZUH_VERSION}-1
|
|
|
|
RUN curl -L -O https://artifacts.elastic.co/downloads/beats/filebeat/${FILEBEAT_CHANNEL}-${FILEBEAT_VERSION}-amd64.deb &&\
|
|
dpkg -i ${FILEBEAT_CHANNEL}-${FILEBEAT_VERSION}-amd64.deb && rm -f ${FILEBEAT_CHANNEL}-${FILEBEAT_VERSION}-amd64.deb && \
|
|
curl -s https://packages.wazuh.com/4.x/filebeat/${WAZUH_FILEBEAT_MODULE} | tar -xvz -C /usr/share/filebeat/module
|
|
|
|
RUN curl -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o /usr/local/bin/goss && chmod +rx /usr/local/bin/goss
|
|
|
|
ARG S6_VERSION="v2.2.0.3"
|
|
RUN curl --fail --silent -L https://github.com/just-containers/s6-overlay/releases/download/${S6_VERSION}/s6-overlay-amd64.tar.gz \
|
|
-o /tmp/s6-overlay-amd64.tar.gz && \
|
|
tar xzf /tmp/s6-overlay-amd64.tar.gz -C / --exclude="./bin" && \
|
|
tar xzf /tmp/s6-overlay-amd64.tar.gz -C /usr ./bin && \
|
|
rm /tmp/s6-overlay-amd64.tar.gz
|
|
|
|
COPY config/etc/ /etc/
|
|
COPY --chown=root:wazuh config/create_user.py /var/ossec/framework/scripts/create_user.py
|
|
|
|
COPY config/filebeat.yml /etc/filebeat/
|
|
|
|
RUN chmod go-w /etc/filebeat/filebeat.yml
|
|
|
|
ADD https://raw.githubusercontent.com/wazuh/wazuh/$TEMPLATE_VERSION/extensions/elasticsearch/7.x/wazuh-template.json /etc/filebeat
|
|
RUN chmod go-w /etc/filebeat/wazuh-template.json
|
|
|
|
# Prepare permanent data
|
|
# Sync calls are due to https://github.com/docker/docker/issues/9547
|
|
|
|
COPY config/permanent_data.env config/permanent_data.sh /
|
|
RUN chmod 755 /permanent_data.sh && \
|
|
sync && /permanent_data.sh && \
|
|
sync && rm /permanent_data.sh
|
|
|
|
# Services ports
|
|
EXPOSE 55000/tcp 1514/tcp 1515/tcp 514/udp 1516/tcp
|
|
|
|
ENTRYPOINT [ "/init" ] |