From c2a6c66dad5f6a60c04f6007667fd0309e1f0149 Mon Sep 17 00:00:00 2001 From: Ruakij Date: Fri, 14 Jul 2023 19:41:18 +0200 Subject: [PATCH 1/2] Change to debian slim for full support --- tools/bandwhich/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bandwhich/Dockerfile b/tools/bandwhich/Dockerfile index 4ff7cc8..21bb9f3 100644 --- a/tools/bandwhich/Dockerfile +++ b/tools/bandwhich/Dockerfile @@ -1,5 +1,5 @@ # ---- Base ---- -FROM alpine:3 AS base +FROM debian:stable-slim AS base WORKDIR /app From b079a26969e65f75bd6c46e09eeea43ced3b3d2d Mon Sep 17 00:00:00 2001 From: Ruakij Date: Fri, 14 Jul 2023 19:41:32 +0200 Subject: [PATCH 2/2] add example from pre-build image --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3a9f699..594be59 100644 --- a/README.md +++ b/README.md @@ -62,9 +62,17 @@ https://github.com/imsnif/bandwhich ### 2.1.2. Example ``` -docker run -it --net host bandwhich -i eth0 +docker run --rm -v /proc:/proc ghcr.io/ruakij/dockerbuilds/bandwhich:latest -n -i eth0 ``` +||| +-|- +`--rm` * | Removes the container when its stopped +`-v /proc:/proc` * | Makes Process identification from host-processes possible +`-n` * | Dont resolve IPs +`-i eth0` * | Only check on eth0 interface + +*\* is Optional*
## 2.2. auto-editor