File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ a debugging "sidecar" container that _feels_ like a `docker exec` session to the
6767- No extra volumes or copying of debugging tools is needed.
6868- The debugging tools ** _ are_ ** available in the target container.
6969
70- By default, the ` busybox:latest ` image is used for the debugger sidecar, but you can override it
70+ By default, the ` busybox:musl ` (statically compiled) image is used for the debugger sidecar, but you can override it
7171with the ` --image ` flag. Combining this with the superpower of Nix and [ Nixery] ( https://nixery.dev/ ) ,
7272you can get all your favorite tools by simply listing them in the image name:
7373
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import (
1515)
1616
1717const (
18- defaultToolkitImage = "docker.io/library/busybox:latest "
18+ defaultToolkitImage = "docker.io/library/busybox:musl "
1919
2020 schemaContainerd = "containerd://"
2121 schemaDocker = "docker://"
@@ -120,7 +120,7 @@ func NewCommand(cli cliutil.CLI) *cobra.Command {
120120 & opts .image ,
121121 "image" ,
122122 defaultToolkitImage ,
123- `Debugging toolkit image (hint: use "busybox" or "nixery.dev/shell/vim/ps/tool3/tool4/...")` ,
123+ `Debugging toolkit image (hint: use "busybox:musl " or "nixery.dev/shell/vim/ps/tool3/tool4/...")` ,
124124 )
125125 flags .BoolVarP (
126126 & opts .stdin ,
You can’t perform that action at this time.
0 commit comments