@pulumi/docker 4.6.0-alpha.1700544585 → 4.6.0-alpha.1701108803

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.
@@ -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 need to be presend on the Docker Host
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 need to be presend on the Docker Host
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 need to be presend on the Docker Host
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 need to be presend on the Docker Host
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/docker",
3
- "version": "v4.6.0-alpha.1700544585+c3ae46d0",
3
+ "version": "v4.6.0-alpha.1701108803+5a70e485",
4
4
  "description": "A Pulumi package for interacting with Docker in Pulumi programs",
5
5
  "keywords": [
6
6
  "pulumi",
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 variablesthat can be accessed like environment variables inside the RUN instruction.
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>;