feat: add volume, images and networks

This commit is contained in:
2026-05-18 19:30:33 +02:00
parent 4f53aefb6e
commit bd3121d688
10 changed files with 1221 additions and 208 deletions

View File

@ -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 {