blob: d9cbeab99475af781b874125f0c58dc02740ab3a [file] [log] [blame]
syntax = "proto3";
package metropolis.test.localregistry.spec;
option go_package = "source.monogon.dev/metropolis/test/localregistry/spec";
// Single image metadata
message Image {
// Name of the image (no domain or tag, just slash-separated path)
string name = 1;
// Path to the image
string path = 2;
}
// Main message
message Manifest {
// List of images for the local registry
repeated Image images = 1;
}