Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Dockerfile ok for Centos 8 (Centos is called as latest - so 8 - … #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ADD ossec-server.sh /ossec-server.sh

RUN \
yum -y update && \
yum -y install wget useradd postfix && \
yum -y install wget postfix && \
yum clean all && \
cd /root; NON_INT=1 wget -q -O - https://updates.atomicorp.com/installers/atomic |sh && \
yum -y install ossec-hids-server && \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

OSSEC HIDS Server v2.9.4

Based on Centos 7, this is the official OSSEC project docker container. Note: this can be easily adapted for RHEL 7 for FIPS-140-2 compliance.
Based on Centos 8, this is the official OSSEC project docker container. Note: this can be easily adapted for RHEL 8 for FIPS-140-2 compliance.

By default this container will create a volume to store configuration, log and agent key data
under /var/ossec/data. Additionally it is configured with a local instance of postfix to
Expand Down