LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

gcrane-ls

lists container registry tags

TLDR

List tags in a repository
$ gcrane ls [gcr.io/project/repo]
copy
Recursively list tags and sub-repositories
$ gcrane ls -r [gcr.io/project]
copy
List in JSON format
$ gcrane ls --json [gcr.io/project/repo]
copy

SYNOPSIS

gcrane ls [options] repository

DESCRIPTION

gcrane ls lists tags, manifests, and sub-repositories in Google Container Registry and Artifact Registry. Unlike standard crane ls, it provides richer output including detailed manifest information and recursive repository exploration.The command can display results in human-readable format or as JSON for scripting. Recursive mode (-r) traverses sub-repositories. gcrane ls is essential for discovering available images, auditing registry contents, and building automation scripts.

PARAMETERS

-r, --recursive

Recurse through sub-repositories.
--json
Output manifest information as JSON.
-h, --help
Show help information.

SEE ALSO

gcrane(1), crane-ls(1)

Copied to clipboard
Kai