blob: bb535815052fd935f4d9406ddc9aa1cf575e466a [file] [log] [blame]
syntax = "proto3";
package monogon.metropolis.pkg.localregistry;
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;
}