1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-05-13 22:06:55 +02:00

add falco

This commit is contained in:
kev 2025-04-21 18:39:40 +08:00
parent ba5c08881a
commit 204ea76f86
3 changed files with 22 additions and 0 deletions

View File

@ -374,6 +374,7 @@ A collection of delicious docker recipes.
- [x] quay.io/coreos/etcd - [x] quay.io/coreos/etcd
- [x] audreyt/ethercalc - [x] audreyt/ethercalc
- [x] facefusion/facefusion - [x] facefusion/facefusion
- [x] falcosecurity/falco
- [x] flogo/flogo-docker - [x] flogo/flogo-docker
- [x] mher/flower - [x] mher/flower
- [x] fluent/fluent-bit - [x] fluent/fluent-bit

7
falco/README.md Normal file
View File

@ -0,0 +1,7 @@
falco
=====
[Falco][1] is a cloud native security tool that provides runtime security across
hosts, containers, Kubernetes, and cloud environments.
[1]: https://github.com/falcosecurity/falco

14
falco/docker-compose.yml Normal file
View File

@ -0,0 +1,14 @@
services:
falco:
image: falcosecurity/falco:0.40.0-debian
volumes:
- /etc:/host/etc
- /proc:/host/proc:ro
- /var/run/docker.sock:/host/var/run/docker.sock
cap_drop:
- ALL
cap_add:
- SYS_ADMIN
- SYS_RESOURCE
- SYS_PTRACE
restart: unless-stopped