Skip to content

bhatti image list

List all rootfs images available to the authenticated user.

bhatti image list

Lists images in three scopes:

  • System tiers (minimal, browser, docker, computer) — visible to everyone.
  • Your own images — created via image pull, image import, or image save.
  • Images shared with you by another user.
Terminal window
bhatti image list
ID NAME SOURCE SIZE SCOPE
img_abc123 minimal built-in 186MB admin
img_def456 browser built-in 612MB admin
img_ghi789 python-3.12 oci:python:3.12 284MB user
img_jkl012 my-stack snapshot:dev 512MB user
Terminal window
# JSON for scripting
bhatti image list --json | jq '.[] | select(.user_id != "") | .name'
[
{"id": "img_abc123", "name": "minimal", "source": "built-in", "size_mb": 186, "user_id": ""},
{"id": "img_jkl012", "name": "my-stack", "source": "snapshot:dev", "size_mb": 512, "user_id": "usr_..."}
]

user_id is empty for system images; non-empty values denote ownership.

This command takes only global flags. See Global flags for --url, --token, --json, --timing, --data-dir.