blob: b28c8b73d22066f1524594c0bf2e190ff8c32620 [file] [log] [blame]
syntax = "proto3";
package monogon.metropolis.pkg.localregistry;
option go_package = "source.monogon.dev/metropolis/pkg/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;
}