@@ -51,6 +51,8 @@ It does not necessarily mean that the corresponding features are missing in cont
51
51
- [ :nerd_face : nerdctl image convert] ( #nerd_face-nerdctl-image-convert )
52
52
- [ :nerd_face : nerdctl image encrypt] ( #nerd_face-nerdctl-image-encrypt )
53
53
- [ :nerd_face : nerdctl image decrypt] ( #nerd_face-nerdctl-image-decrypt )
54
+ - [ Manifest management] ( #manifest-management )
55
+ - [ :whale : nerdctl manifest inspect] ( #nerd_face-nerdctl-manifest-inspect )
54
56
- [ Registry] ( #registry )
55
57
- [ :whale : nerdctl login] ( #whale-nerdctl-login )
56
58
- [ :whale : nerdctl logout] ( #whale-nerdctl-logout )
@@ -1035,6 +1037,34 @@ Flags:
1035
1037
- ` --platform=<PLATFORM> ` : Convert content for a specific platform
1036
1038
- ` --all-platforms ` : Convert content for all platforms (default: false)
1037
1039
1040
+ ## Manifest management
1041
+
1042
+ ### :nerd_face : nerdctl manifest inspect
1043
+
1044
+ Display the contents of a manifest list or manifest.
1045
+
1046
+ Usage: ` nerdctl manifest inspect [OPTIONS] MANIFEST `
1047
+
1048
+ #### Input formats
1049
+
1050
+ You can specify the manifest to inspect using one of the following formats:
1051
+ - ** Image name with tag** : ` alpine:3.22.1 `
1052
+ - ** Image name with digest** : ` alpine@sha256:eafc1edb577d2e9b458664a15f23ea1c370214193226069eb22921169fc7e43f `
1053
+
1054
+ Flags:
1055
+
1056
+ - ` --verbose ` : Verbose output, show additional info including layers and platform
1057
+
1058
+ Example:
1059
+
1060
+ ``` bash
1061
+ nerdctl manifest inspect alpine:3.22.1
1062
+ nerdctl manifest inspect alpine@sha256:eafc1edb577d2e9b458664a15f23ea1c370214193226069eb22921169fc7e43f
1063
+ ```
1064
+
1065
+ Notes:
1066
+ - Currently, only manifests of images that already exist locally can be inspected. Remote images are not supported.
1067
+
1038
1068
## Registry
1039
1069
1040
1070
### :whale : nerdctl login
0 commit comments