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

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

Awesome Lists containing this project

README

          

# Debug online application in alpine docker

![Docker Stars](https://img.shields.io/docker/stars/songrgg/alpine-debug.svg)
![Docker Pulls](https://img.shields.io/docker/pulls/songrgg/alpine-debug.svg)

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
```