LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

crane-manifest

retrieve container image manifest

TLDR

Get image manifest
$ crane manifest [image:tag]
copy
Get manifest for specific platform
$ crane manifest --platform [linux/amd64] [image:tag]
copy
Pretty print manifest
$ crane manifest [image] | jq .
copy

SYNOPSIS

crane manifest [options] image

DESCRIPTION

crane manifest retrieves the manifest for a container image. The manifest describes the image's layers, configuration, and platform information.Output is in JSON format (OCI or Docker manifest schema).

PARAMETERS

--platform platform

Specifies the platform in the form os/arch[/variant][:osversion] (e.g. linux/amd64). Default: all.
--insecure
Allow image references to be fetched without TLS.
-v, --verbose
Enable debug logs.

SEE ALSO

Copied to clipboard
Kai