mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-07-04 09:10:09 +00:00
[dockerode] add VolumeOptions & TmpfsOptions to MountSettings (#34991)
* add VolumeOptions & TmpfsOptions to MountSettings
* Labels and Options as { [name: string]: string }
This commit is contained in:
committed by
Pranav Senthilnathan
parent
5ff6bfd1b9
commit
e09e79218d
12
types/dockerode/index.d.ts
vendored
12
types/dockerode/index.d.ts
vendored
@@ -810,6 +810,18 @@ declare namespace Dockerode {
|
||||
BindOptions ?: {
|
||||
Propagation: MountPropagation;
|
||||
};
|
||||
VolumeOptions ?: {
|
||||
NoCopy: boolean;
|
||||
Labels: { [label: string]: string };
|
||||
DriverConfig: {
|
||||
Name: string;
|
||||
Options: { [option: string]: string};
|
||||
};
|
||||
};
|
||||
TmpfsOptions ?: {
|
||||
SizeBytes: number;
|
||||
Mode: number;
|
||||
};
|
||||
}
|
||||
|
||||
type MountConfig = MountSettings[];
|
||||
|
||||
Reference in New Issue
Block a user