@pulumi/docker 4.5.0 → 4.6.0-alpha.0
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/getRemoteImage.d.ts +2 -2
- package/getRemoteImage.js +2 -2
- package/package.json +1 -1
- package/types/input.d.ts +2 -2
- package/types/output.d.ts +1 -1
package/getRemoteImage.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* `docker.RemoteImage` provides details about a specific Docker Image which
|
|
3
|
+
* `docker.RemoteImage` provides details about a specific Docker Image which needs to be present on the Docker Host
|
|
4
4
|
*
|
|
5
5
|
* ## Example Usage
|
|
6
6
|
*
|
|
@@ -50,7 +50,7 @@ export interface GetRemoteImageResult {
|
|
|
50
50
|
readonly repoDigest: string;
|
|
51
51
|
}
|
|
52
52
|
/**
|
|
53
|
-
* `docker.RemoteImage` provides details about a specific Docker Image which
|
|
53
|
+
* `docker.RemoteImage` provides details about a specific Docker Image which needs to be present on the Docker Host
|
|
54
54
|
*
|
|
55
55
|
* ## Example Usage
|
|
56
56
|
*
|
package/getRemoteImage.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.getRemoteImageOutput = exports.getRemoteImage = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* `docker.RemoteImage` provides details about a specific Docker Image which
|
|
9
|
+
* `docker.RemoteImage` provides details about a specific Docker Image which needs to be present on the Docker Host
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
|
@@ -36,7 +36,7 @@ function getRemoteImage(args, opts) {
|
|
|
36
36
|
}
|
|
37
37
|
exports.getRemoteImage = getRemoteImage;
|
|
38
38
|
/**
|
|
39
|
-
* `docker.RemoteImage` provides details about a specific Docker Image which
|
|
39
|
+
* `docker.RemoteImage` provides details about a specific Docker Image which needs to be present on the Docker Host
|
|
40
40
|
*
|
|
41
41
|
* ## Example Usage
|
|
42
42
|
*
|
package/package.json
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -262,7 +262,7 @@ export interface ContainerVolume {
|
|
|
262
262
|
*/
|
|
263
263
|
export interface DockerBuild {
|
|
264
264
|
/**
|
|
265
|
-
* An optional map of named build-time argument variables to set during the Docker build. This flag allows you to pass build-time
|
|
265
|
+
* An optional map of named build-time argument variables to set during the Docker build. This flag allows you to pass build-time variables that can be accessed like environment variables inside the RUN instruction.
|
|
266
266
|
*/
|
|
267
267
|
args?: pulumi.Input<{
|
|
268
268
|
[key: string]: pulumi.Input<string>;
|
|
@@ -633,7 +633,7 @@ export interface ServiceLabel {
|
|
|
633
633
|
}
|
|
634
634
|
export interface ServiceMode {
|
|
635
635
|
/**
|
|
636
|
-
*
|
|
636
|
+
* When `true`, tasks will run on every worker node. Conflicts with `replicated`
|
|
637
637
|
*/
|
|
638
638
|
global?: pulumi.Input<boolean>;
|
|
639
639
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -570,7 +570,7 @@ export interface ServiceLabel {
|
|
|
570
570
|
}
|
|
571
571
|
export interface ServiceMode {
|
|
572
572
|
/**
|
|
573
|
-
*
|
|
573
|
+
* When `true`, tasks will run on every worker node. Conflicts with `replicated`
|
|
574
574
|
*/
|
|
575
575
|
global?: boolean;
|
|
576
576
|
/**
|