https://github.com/daemon1024/minotaur
https://github.com/daemon1024/minotaur
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/daemon1024/minotaur
- Owner: daemon1024
- Created: 2022-04-07T09:17:14.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-04-11T06:50:42.000Z (over 3 years ago)
- Last Synced: 2025-02-01T00:57:08.944Z (11 months ago)
- Language: Makefile
- Size: 10.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Minotaur
Experimental libbpf code without CORE for runtime ebpf compilation inside the container
Build
```sh
docker build -t daemon1024/minotaur-init --target init .
docker build -t daemon1024/minotaur --target main .
```
Use the following command to start pod:
```sh
kubectl apply -f pod.yaml
```
OR
Build
```sh
docker build -t daemon1024/minotaur --target full .
```
Use the following command to start container:
```sh
docker run --rm -it \
--pid=host --privileged \
-v /usr/src:/usr/src:ro \
-v /lib/modules:/lib/modules:ro \
-v /sys/kernel/debug:/sys/kernel/debug:ro \
daemon1024/minotaur:latest
```