containerd/api/mount/mount.proto
Stephen J Day f898628330 api/mount: add common mount type for services
Signed-off-by: Stephen J Day <stephen.day@docker.com>
2016-12-01 15:27:52 -08:00

12 lines
183 B
Protocol Buffer

syntax = "proto3";
package containerd.v1;
import "gogoproto/gogo.proto";
message Mount {
string type = 1;
string target = 2;
string source = 3;
repeated string options = 4;
}