Update comments in rootfs and for desciptor

Signed-off-by: Derek McGowan <derek@mcgstyle.net> (github: dmcgowan)
This commit is contained in:
Derek McGowan 2017-03-10 22:05:27 -08:00
parent 3a20dd41d5
commit 340e56ecd0
No known key found for this signature in database
GPG key ID: F58C5D0A4405ACDB
2 changed files with 7 additions and 2 deletions

View file

@ -4,6 +4,11 @@ package containerd.v1.types;
import "gogoproto/gogo.proto";
// Descriptor describes a blob in a content store.
//
// This descriptor can be used to reference content from an
// oci descriptor found in a manifest.
// See https://godoc.org/github.com/opencontainers/image-spec/specs-go/v1#Descriptor
message Descriptor {
string mediaType = 1;
string digest = 2 [(gogoproto.customtype) = "github.com/opencontainers/go-digest.Digest", (gogoproto.nullable) = false];