mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-04-19 21:52:27 +00:00
21 lines
422 B
YAML
21 lines
422 B
YAML
version: '2.3'
|
|
|
|
services:
|
|
|
|
# Suricata service
|
|
suricata:
|
|
build: .
|
|
container_name: suricata
|
|
restart: always
|
|
stop_signal: SIGINT
|
|
environment:
|
|
# For ET Pro ruleset replace <OPEN> with your OINKCODE
|
|
- OINKCODE=OPEN
|
|
network_mode: "host"
|
|
cap_add:
|
|
- NET_ADMIN
|
|
- SYS_NICE
|
|
- NET_RAW
|
|
image: "dtagdevsec/suricata:1804"
|
|
volumes:
|
|
- /data/suricata/log:/var/log/suricata
|