feat(compose): add InspectRemoteImage api endpoint to inspect images in registry

This commit is contained in:
Pavel Sviderski
2025-03-26 20:37:53 +10:00
parent ffef41081b
commit c42968c812
5 changed files with 193 additions and 64 deletions
+4 -2
View File
@@ -118,6 +118,8 @@ message InspectRemoteImageResponse {
message RemoteImage {
Metadata metadata = 1;
// Raw manifest data (JSON).
bytes manifest = 2;
// Image reference in the canonical form with the digest.
string reference = 2;
// Raw JSON manifest from the registry.
bytes manifest = 3;
}