An open API service indexing awesome lists of open source software.

https://github.com/wrboyce/docker-utils

various utilities I've needed and may need again
https://github.com/wrboyce/docker-utils

docker

Last synced: 4 months ago
JSON representation

various utilities I've needed and may need again

Awesome Lists containing this project

README

          

# Docker Utils

## Usage

All images should be published to docker hub built for `amd64`, `arm64`, and `arm/v7`. If a desired
architecture is not available, then the `make gen` command can be used to generate some one-line
commands to have docker build the image locally.

## Examples

### bandwhich

monitor bandwhich usage include per-process, per-connection, and per-host views:

```
docker run --rm -it --net=host --pid=host --privileged wrboyce/utils:bandwhich
```

### btop

```
docker run --rm -it --net=host --pid=host --privileged wrboyce/utils:btop
```

### bwm-ng

monitor bandwidth usage on all host interfaces:

```
docker run --rm -it --net=host wrboyce/utils:bwm-ng
```

### ctop

```
docker run --rm -it -v /var/run/docker.sock:/var/run/docker.sock:ro wrboyce/utils:ctop
```

### htop

```
docker run --rm -it --pid=host wrboyce/utils:htop
```

### iperf3

run an `iperf3` server:

```
docker run --rm -i --net=host wrboyce/utils:iperf3 -s
```

run an `iperf3` test:

```
docker run --rm -i wrboyce/utils:iperf3 -s $server
```

### jq

pretty print a json file:

```
docker run --rm -i wrboyce/utils:jq -C