@pulumi/docker 5.1.0-alpha.1776925580 → 5.1.0-alpha.1776935351

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/docker",
3
- "version": "5.1.0-alpha.1776925580",
3
+ "version": "5.1.0-alpha.1776935351",
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.1776925580"
27
+ "version": "5.1.0-alpha.1776935351"
28
28
  }
29
29
  }
package/types/input.d.ts CHANGED
@@ -1278,7 +1278,7 @@ export interface ServiceLabel {
1278
1278
  }
1279
1279
  export interface ServiceMode {
1280
1280
  /**
1281
- * When `true`, tasks will run on every worker node. Conflicts with `replicated`
1281
+ * The global service mode. Defaults to `false`
1282
1282
  */
1283
1283
  global?: pulumi.Input<boolean>;
1284
1284
  /**
package/types/output.d.ts CHANGED
@@ -1231,7 +1231,7 @@ export interface ServiceLabel {
1231
1231
  }
1232
1232
  export interface ServiceMode {
1233
1233
  /**
1234
- * When `true`, tasks will run on every worker node. Conflicts with `replicated`
1234
+ * The global service mode. Defaults to `false`
1235
1235
  */
1236
1236
  global?: boolean;
1237
1237
  /**