Skip to content

Commit

Permalink
Merge pull request #1092 from wazuh/merge-4.7.1-into-4.8.0
Browse files Browse the repository at this point in the history
Merge 4.7.1 into 4.8.0
  • Loading branch information
c-bordon authored Oct 31, 2023
2 parents 7c814de + 27962e3 commit 4863d54
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build-docker-images/wazuh-dashboard/config/wazuh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# https://documentation.wazuh.com/current/installation-guide/index.html
#
# Also, you can check our repository:
# https://github.com/wazuh/wazuh-kibana-app
# https://github.com/wazuh/wazuh-dashboard-plugins
#
# ------------------------------- Index patterns -------------------------------
#
Expand Down
12 changes: 12 additions & 0 deletions build-docker-images/wazuh-manager/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,18 @@ RUN chmod 755 /permanent_data.sh && \
sync && /permanent_data.sh && \
sync && rm /permanent_data.sh

#Make mount directories for keep permissions

RUN mkdir -p /var/ossec/var/multigroups && \
chown root:wazuh /var/ossec/var/multigroups && \
chmod 770 /var/ossec/var/multigroups && \
mkdir -p /var/ossec/agentless && \
chown root:wazuh /var/ossec/agentless && \
chmod 770 /var/ossec/agentless && \
mkdir -p /var/ossec/active-response/bin && \
chown root:wazuh /var/ossec/active-response/bin && \
chmod 770 /var/ossec/active-response/bin

# Services ports
EXPOSE 55000/tcp 1514/tcp 1515/tcp 514/udp 1516/tcp

Expand Down

0 comments on commit 4863d54

Please sign in to comment.