We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5da19a4 commit 8c17100Copy full SHA for 8c17100
internal/cmd/image/list/list.go
@@ -41,7 +41,7 @@ func NewCmd(params *types.CmdParams) *cobra.Command {
41
Args: args.NoArgs,
42
Example: examples.Build(
43
examples.NewExample(
44
- `List all images`,
+ `List images in your project`,
45
`$ stackit image list`,
46
),
47
@@ -52,6 +52,10 @@ func NewCmd(params *types.CmdParams) *cobra.Command {
52
`List the first 10 images`,
53
`$ stackit image list --limit=10`,
54
55
+ examples.NewExample(
56
+ `List all images`,
57
+ `$ stackit image list --all`,
58
+ ),
59
60
RunE: func(cmd *cobra.Command, args []string) error {
61
ctx := context.Background()
0 commit comments