Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.
/ debug Public archive

Simple container image for debugging

License

Notifications You must be signed in to change notification settings

patrickhoefler/debug

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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