f898628330
Signed-off-by: Stephen J Day <stephen.day@docker.com>
12 lines
183 B
Protocol Buffer
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;
|
|
}
|