Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions data/sbx_cli/sbx_template_rm.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
name: sbx template rm
synopsis: Remove a template image
description: |
description: |-
Remove a template image from the sandbox runtime's image store.
usage: sbx template rm TAG [flags]

The image can be identified by tag (e.g. "myimage:v1.0") or by image ID
(full or prefix, e.g. "abc123"). Use "sbx template ls" to see available
images and their IDs.
usage: sbx template rm TAG|ID [flags]
options:
- name: help
shorthand: h
Expand All @@ -14,7 +18,10 @@ inherited_options:
default_value: "false"
usage: Enable debug logging
example: |4-
# Remove a template image
# Remove by tag
sbx template rm myimage:v1.0

# Remove by image ID (prefix)
sbx template rm abc123
see_also:
- sbx template - Manage sandbox templates