Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/timwspence/docker-debugger

A docker image with all the standard process/networking debug tools
https://github.com/timwspence/docker-debugger

Last synced: 29 days ago
JSON representation

A docker image with all the standard process/networking debug tools

Awesome Lists containing this project

README

        

# docker-debugger
A [docker image](https://hub.docker.com/r/timwspence/debugger/) with all the standard process/networking debug tools.
Based on arch so the image should be relatively small.

Currently the following packages are installed:
- curl
- traceroute
- nload
- mtr
- netdata
- tcpdump
- wireshark-cli
- nmap (includes ncat - arguably the best of the netcat implementations)
- ngrep
- lsof
- strace
- htop

## Usage
To debug another container:
```
docker run --privileged -ti --pid=container: --network=container: timwspence/docker-debugger
```

To debug a process on the host:
```
docker run --privileged -ti --pid=host --network=host timwspence/docker-debugger```