Skip to content

Commit

Permalink
Merge pull request #133 from draios/add-jq-to-docker
Browse files Browse the repository at this point in the history
Add jq to docker
  • Loading branch information
mstemm committed Oct 13, 2016
2 parents 1a78e45 + 2044091 commit 7e60b4b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions docker/dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ RUN echo "deb http://httpredir.debian.org/debian jessie main" > /etc/apt/sources
&& apt-get install -y --no-install-recommends \
bash-completion \
curl \
jq \
gnupg2 \
ca-certificates \
gcc \
Expand Down
1 change: 1 addition & 0 deletions docker/stable/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ RUN echo "deb http://httpredir.debian.org/debian jessie main" > /etc/apt/sources
&& apt-get install -y --no-install-recommends \
bash-completion \
curl \
jq \
ca-certificates \
gnupg2 \
gcc \
Expand Down
6 changes: 6 additions & 0 deletions falco.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ file_output:
stdout_output:
enabled: true

# Possible additional things you might want to do with program output:
# - send to a slack webhook:
# program: "jq '{text: .output}' | curl -d @- -X POST https://hooks.slack.com/services/XXX"
# - logging (alternate method than syslog):
# program: logger -t falco-test

program_output:
enabled: false
program: mail -s "Falco Notification" someone@example.com

0 comments on commit 7e60b4b

Please sign in to comment.