crane-manifest

retrieve container image manifest

TLDR

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

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.

INSTALL

sudo pacman -S crane
sudo apk add crane
sudo zypper install crane
brew install crane
nix profile install nixpkgs#crane

SEE ALSO

crane(1), crane-config(1), crane-digest(1)