Docker Container

Create a Config File

mkdir /etc/jibril
vi /etc/jibril/config.yaml

Use the default configuration file as a reference to create the initial config file.

Obtain Jibril

docker pull garnetlabs/jibril:v2.6

Run Jibril using Docker

docker run --rm --name=jibril --privileged \
    --pid=host --cgroupns=host --network=host \
    -e TERM=xterm -v /sys:/sys:ro \
    -v /sys/fs/bpf:/sys/fs/bpf:rw \
    -v /etc/jibril/:/etc/jibril:rw \
    -v /var/log/jibril:/var/log/jibril:rw \
    garnetlabs/jibril:v2.6 --config /etc/jibril/config.yaml

This command is an example of how one can run Jibril using its docker image.

For Kubernetes, use the Kubernetes instructions.

Last updated

Was this helpful?