cri
NAME¶
tracee --cri - Select container runtimes to connect to for container events enrichment
SYNOPSIS¶
tracee --cri <[crio|containerd|docker|podman]:socket> [--cri ...] ...
DESCRIPTION¶
By default, if no flag is passed, Tracee will automatically detect installed runtimes by going through known runtime socket paths, looking for the following paths:
- Docker:
/var/run/docker.sock
- Containerd:
/var/run/containerd/containerd.sock
- CRI-O:
/var/run/crio/crio.sock
- Podman:
/var/run/podman/podman.sock
If runtimes are specified using the --cri flag, only the ones passed through the flags will be connected to through the provided socket file path.
Supported runtimes are:
- CRI-O (crio, cri-o)
- Containerd (containerd)
- Docker (docker)
- Podman (podman)
EXAMPLE¶
- To connect to CRI-O using the socket file path
/var/run/crio/crio.sock
, use the following flag:
--cri crio:/var/run/crio/crio.sock
Please refer to the documentation for more information on container events enrichment.