From 4da24a0a460ea4b94bca03882dce6f7f8dd414c8 Mon Sep 17 00:00:00 2001 From: David Karlsson <35727626+dvdksn@users.noreply.github.com> Date: Tue, 21 Apr 2026 16:33:39 +0200 Subject: [PATCH] sbx: sbx template rm [id] Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- data/sbx_cli/sbx_template_rm.yaml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/data/sbx_cli/sbx_template_rm.yaml b/data/sbx_cli/sbx_template_rm.yaml index 390c573039c6..f0dd4b670cbe 100644 --- a/data/sbx_cli/sbx_template_rm.yaml +++ b/data/sbx_cli/sbx_template_rm.yaml @@ -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 @@ -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