From e0158ea81a5a3574056fa251a75db07749fb857c Mon Sep 17 00:00:00 2001 From: eduard256 Date: Fri, 24 Apr 2026 11:15:34 +0000 Subject: [PATCH] Add Podman section to README with required capabilities --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index c8a880c..127f269 100644 --- a/README.md +++ b/README.md @@ -122,6 +122,22 @@ curl -O https://raw.githubusercontent.com/eduard256/Strix/main/docker-compose.go docker compose -f docker-compose.go2rtc.yml up -d ``` +### Podman + +Podman drops `NET_RAW` and `NET_ADMIN` by default, which Strix needs for network scanning. Add them explicitly: + +```bash +podman run -d \ + --name strix \ + --network host \ + --cap-add=NET_RAW \ + --cap-add=NET_ADMIN \ + --restart unless-stopped \ + eduard256/strix:latest +``` + +Or run with `--privileged` if you prefer. + ### Home Assistant Add-on 1. **Settings** > **Add-ons** > **Add-on Store**