Compare commits

..

No commits in common. "76bf7c74987cbbc8e51d32e1f04a0a419187dc09" and "a3739784b5c969dfd0417a0e8dfaea066f09a34e" have entirely different histories.

2 changed files with 2 additions and 10 deletions

View File

@ -62,17 +62,9 @@ https://github.com/imsnif/bandwhich
### 2.1.2. Example
```
docker run --rm -v /proc:/proc ghcr.io/ruakij/dockerbuilds/bandwhich:latest -n -i eth0
docker run -it --net host bandwhich -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*
<br>
## 2.2. auto-editor

View File

@ -1,5 +1,5 @@
# ---- Base ----
FROM debian:stable-slim AS base
FROM alpine:3 AS base
WORKDIR /app