Skip to content

Commit

Permalink
chore(content/en/docs): reorder container setup paths in examples
Browse files Browse the repository at this point in the history
Co-authored-by: Leonardo Di Giovanna <[email protected]>
Signed-off-by: Leonardo Grasso <[email protected]>
  • Loading branch information
2 people authored and poiana committed Jan 28, 2025
1 parent 7208a93 commit 7a723eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/en/docs/setup/container.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,8 @@ For the {{< glossary_tooltip text="eBPF probe" term_id="ebpf-probe" >}} driver,
--cap-add sys_ptrace \
-v /var/run/docker.sock:/host/var/run/docker.sock \
-v /root/.falco:/root/.falco \
-v /etc:/host/etc \
-v /proc:/host/proc:ro \
-v /etc:/host/etc \
falcosecurity/falco:latest falco -o engine.kind=ebpf
# If running a kernel version < 4.14, add '-v /sys/kernel/debug:/sys/kernel/debug:ro \' to the above Docker command.
Expand Down Expand Up @@ -222,10 +222,10 @@ docker pull falcosecurity/falco-driver-loader:latest
docker run --rm -it \
--privileged \
-v /root/.falco:/root/.falco \
-v /proc:/host/proc:ro \
-v /boot:/host/boot:ro \
-v /lib/modules:/host/lib/modules \
-v /usr:/host/usr:ro \
-v /proc:/host/proc:ro \
-v /etc:/host/etc:ro \
falcosecurity/falco-driver-loader:latest kmod
```
Expand All @@ -239,10 +239,10 @@ docker pull falcosecurity/falco-driver-loader:latest
docker run --rm -it \
--privileged \
-v /root/.falco:/root/.falco \
-v /proc:/host/proc:ro \
-v /boot:/host/boot:ro \
-v /lib/modules:/host/lib/modules:ro \
-v /usr:/host/usr:ro \
-v /proc:/host/proc:ro \
-v /etc:/host/etc:ro \
falcosecurity/falco-driver-loader:latest ebpf
```
Expand Down

0 comments on commit 7a723eb

Please sign in to comment.