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
67
67
- No extra volumes or copying of debugging tools is needed.
68
68
- The debugging tools ** _ are_ ** available in the target container.
69
69
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
71
71
with the ` --image ` flag. Combining this with the superpower of Nix and [ Nixery] ( https://nixery.dev/ ) ,
72
72
you can get all your favorite tools by simply listing them in the image name:
73
73
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import (
15
15
)
16
16
17
17
const (
18
- defaultToolkitImage = "docker.io/library/busybox:latest "
18
+ defaultToolkitImage = "docker.io/library/busybox:musl "
19
19
20
20
schemaContainerd = "containerd://"
21
21
schemaDocker = "docker://"
@@ -120,7 +120,7 @@ func NewCommand(cli cliutil.CLI) *cobra.Command {
120
120
& opts .image ,
121
121
"image" ,
122
122
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/...")` ,
124
124
)
125
125
flags .BoolVarP (
126
126
& opts .stdin ,
You can’t perform that action at this time.
0 commit comments