mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 19:07:08 +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:
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[];
|
||||
|
||||
Loading…
Reference in New Issue
Block a user