Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
138 changes: 74 additions & 64 deletions contimage/contimage.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 10 additions & 9 deletions proto/contimage/contimage.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,16 @@ message ContainerImagePayload {

// ContainerImage contains the details of a container image
message ContainerImage {
string id = 1;
repeated string dd_tags = 12;
string name = 2;
string registry = 3;
string short_name = 4;
repeated string repo_tags = 5;
string digest = 6;
int64 size = 7;
repeated string repo_digests = 8;
string id = 1;
repeated string dd_tags = 12;
string name = 2;
string registry = 3;
string short_name = 4;
repeated string repo_tags = 5;
string digest = 6;
int64 size = 7;
repeated string repo_digests = 8;
float space_effic_score = 14;

// platform info
message OperatingSystem {
Expand Down