This project aims to provide documentation for eBPF, with a specific focus on technical details for developers of projects that use eBPF.
In order to see the docs in browser you need to serve them locally. This can be done with docker via the makefile.
$ make serve
Or you can serve from you own host by following these steps:
$ python3 -m venv .venv
$ source .venv/bin/activate
$ pip install -r requirements.txt
$ mkdocs serve -a 127.0.0.1:8000 --watch ./docs
Go to https://docs.ebpf.io/meta/ for some documentation about this project itself.
This project is meant to provide a common knowledge base of the whole eBPF community, everyone is free to submit changes via Github Pull Requests, please read our Contributions Guide for details and guidelines.