Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/timwspence/docker-debugger
- Owner: TimWSpence
- Created: 2017-07-03T10:17:50.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-17T07:29:56.000Z (over 7 years ago)
- Last Synced: 2024-10-15T02:11:45.189Z (3 months ago)
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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```