Dockerode: Add RootFS to image inspect typing (#40848)

From: https://docs.docker.com/engine/api/v1.40/#operation/ImageInspect

Signed-off-by: Cameron Diver <cameron@balena.io>
This commit is contained in:
CameronDiver
2019-12-05 21:37:51 -08:00
committed by Ron Buckton
parent 32c12c3273
commit eeeb815207
+5
View File
@@ -764,6 +764,11 @@ declare namespace Dockerode {
DeviceSize: string;
}
};
RootFS: {
Type: string;
Layers?: string[];
BaseLayer?: string;
};
}
interface AuthConfig {