feat: add volume, images and networks
This commit is contained in:
@ -34,9 +34,32 @@ message AgentHandshake {
|
||||
string os = 4;
|
||||
}
|
||||
|
||||
message ImageInfo {
|
||||
string id = 1;
|
||||
repeated string tags = 2;
|
||||
int64 size = 3;
|
||||
int64 created_at = 4;
|
||||
}
|
||||
|
||||
message VolumeInfo {
|
||||
string name = 1;
|
||||
string driver = 2;
|
||||
string mountpoint = 3;
|
||||
}
|
||||
|
||||
message NetworkInfo {
|
||||
string id = 1;
|
||||
string name = 2;
|
||||
string driver = 3;
|
||||
string scope = 4;
|
||||
}
|
||||
|
||||
message ContainerSnapshot {
|
||||
repeated ContainerInfo containers = 1;
|
||||
int64 timestamp = 2;
|
||||
int64 timestamp = 2;
|
||||
repeated ImageInfo images = 3;
|
||||
repeated VolumeInfo volumes = 4;
|
||||
repeated NetworkInfo networks = 5;
|
||||
}
|
||||
|
||||
message CommandResult {
|
||||
|
||||
Reference in New Issue
Block a user