/debug

Simple container image for debugging

Primary LanguageDockerfileMIT LicenseMIT

debug

Simple container image for debugging.

The debug container image is based on the latest Ubuntu LTS image and contains:

Usage

One-Off Command

If you only want to run a single command:

Docker (one-off)

docker run --rm ghcr.io/patrickhoefler/debug dig +short google.com

nerdctl (one-off)

nerdctl run --rm ghcr.io/patrickhoefler/debug dig +short google.com

Kubernetes (one-off)

kubectl run --rm --restart=Never -iq --image ghcr.io/patrickhoefler/debug debug dig +short google.com

Interactive Mode

If you want to start an interactive debugging session:

Docker (interactive)

docker run --rm -it ghcr.io/patrickhoefler/debug

nerdctl (interactive)

nerdctl run --rm -it ghcr.io/patrickhoefler/debug

Kubernetes (interactive)

kubectl run --rm --restart=Never -it --image ghcr.io/patrickhoefler/debug debug

License

MIT