@pulumi/docker 5.1.0-alpha.1778768648 → 5.1.0-alpha.1779810484
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/types/input.d.ts +2 -2
- package/types/output.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/docker",
|
|
3
|
-
"version": "5.1.0-alpha.
|
|
3
|
+
"version": "5.1.0-alpha.1779810484+b920244",
|
|
4
4
|
"description": "A Pulumi package for interacting with Docker in Pulumi programs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -24,6 +24,6 @@
|
|
|
24
24
|
"pulumi": {
|
|
25
25
|
"resource": true,
|
|
26
26
|
"name": "docker",
|
|
27
|
-
"version": "5.1.0-alpha.
|
|
27
|
+
"version": "5.1.0-alpha.1779810484+b920244"
|
|
28
28
|
}
|
|
29
29
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -546,7 +546,7 @@ export interface ContainerVolume {
|
|
|
546
546
|
*/
|
|
547
547
|
fromContainer?: pulumi.Input<string | undefined>;
|
|
548
548
|
/**
|
|
549
|
-
* The path on the host where the volume is coming from.
|
|
549
|
+
* The path on the host where the volume is coming from. If `hostPath` is set, it takes precedence over `volumeName`.
|
|
550
550
|
*/
|
|
551
551
|
hostPath?: pulumi.Input<string | undefined>;
|
|
552
552
|
/**
|
|
@@ -558,7 +558,7 @@ export interface ContainerVolume {
|
|
|
558
558
|
*/
|
|
559
559
|
selinuxRelabel?: pulumi.Input<string | undefined>;
|
|
560
560
|
/**
|
|
561
|
-
* The name of the docker volume which should be mounted.
|
|
561
|
+
* The name of the docker volume which should be mounted. Ignored when `hostPath` is set.
|
|
562
562
|
*/
|
|
563
563
|
volumeName?: pulumi.Input<string | undefined>;
|
|
564
564
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -535,7 +535,7 @@ export interface ContainerVolume {
|
|
|
535
535
|
*/
|
|
536
536
|
fromContainer?: string;
|
|
537
537
|
/**
|
|
538
|
-
* The path on the host where the volume is coming from.
|
|
538
|
+
* The path on the host where the volume is coming from. If `hostPath` is set, it takes precedence over `volumeName`.
|
|
539
539
|
*/
|
|
540
540
|
hostPath?: string;
|
|
541
541
|
/**
|
|
@@ -547,7 +547,7 @@ export interface ContainerVolume {
|
|
|
547
547
|
*/
|
|
548
548
|
selinuxRelabel?: string;
|
|
549
549
|
/**
|
|
550
|
-
* The name of the docker volume which should be mounted.
|
|
550
|
+
* The name of the docker volume which should be mounted. Ignored when `hostPath` is set.
|
|
551
551
|
*/
|
|
552
552
|
volumeName?: string;
|
|
553
553
|
}
|