https://github.com/songrgg/docker-alpine-debug
a docker image based on alpine with multiple debug tools
https://github.com/songrgg/docker-alpine-debug
alpine debuggable docker
Last synced: 25 days ago
JSON representation
a docker image based on alpine with multiple debug tools
- Host: GitHub
- URL: https://github.com/songrgg/docker-alpine-debug
- Owner: songrgg
- Created: 2017-04-07T03:52:28.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-07T05:47:24.000Z (about 9 years ago)
- Last Synced: 2025-03-05T14:35:55.071Z (over 1 year ago)
- Topics: alpine, debuggable, docker
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Debug online application in alpine docker


It's a docker image based on alpine with debug tools like tcpdump, strace, iftop, curl.
# Instructions
- Run bash
```
docker pull songrgg/alpine-debug
docker run --rm -ti songrgg/alpine-debug /bin/bash
```
- tcpdump monitors on the HTTP port
```
docker pull songrgg/alpine-debug
docker run --rm -ti songrgg/alpine-debug /bin/bash
tcpdump -A -i eth0 port 80
```
- iftop monitors current I/O
```
docker pull songrgg/alpine-debug
docker run --rm -ti songrgg/alpine-debug /bin/bash
iftop
```