1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-24 07:48:38 +00:00
This commit is contained in:
kev 2015-09-03 10:08:27 +08:00
parent 9ae4aa5c77
commit 8537fe39c0
2 changed files with 14 additions and 3 deletions

@ -40,6 +40,8 @@ RUN apt-get update \
&& make install \
&& cd .. \
&& rm -rf snort \
&& mkdir -p /etc/snort/rules \
&& curl -sSL https://snort.org/rules/community | tar xz -C /etc/snort/rules \
&& apt-get purge -y --auto-remove build-essential \
bison \
flex \
@ -48,4 +50,6 @@ RUN apt-get update \
libpcre3-dev \
zlib1g-dev
CMD ["snort", "--help"]
ENTRYPOINT ["snort"]
CMD ["--help"]

@ -1,9 +1,16 @@
snort (WIP)
===========
snort
=====
![](https://badge.imagelayers.io/vimagick/snort:latest.svg)
[`Snort`][1] is an open source intrusion prevention system capable of real-time
traffic analysis and packet logging.
## Quick Start
```
$ alias snort='docker run --rm --net host -v `pwd`:/work -w /work vimagick/snort'
$ snort -vde
```
[1]: https://snort.org/