@pulumi/docker 4.11.0-alpha.1766555151 → 4.11.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/package.json +2 -2
- package/types/input.d.ts +6 -6
- package/types/output.d.ts +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/docker",
|
|
3
|
-
"version": "4.11.0
|
|
3
|
+
"version": "4.11.0",
|
|
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": "4.11.0
|
|
27
|
+
"version": "4.11.0"
|
|
28
28
|
}
|
|
29
29
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -653,7 +653,7 @@ export interface RegistryImageBuild {
|
|
|
653
653
|
*/
|
|
654
654
|
additionalContexts?: pulumi.Input<pulumi.Input<string>[]>;
|
|
655
655
|
/**
|
|
656
|
-
*
|
|
656
|
+
* The configuration for the authentication
|
|
657
657
|
*/
|
|
658
658
|
authConfigs?: pulumi.Input<pulumi.Input<inputs.RegistryImageBuildAuthConfig>[]>;
|
|
659
659
|
/**
|
|
@@ -829,7 +829,7 @@ export interface RegistryImageBuildAuthConfig {
|
|
|
829
829
|
*/
|
|
830
830
|
identityToken?: pulumi.Input<string>;
|
|
831
831
|
/**
|
|
832
|
-
*
|
|
832
|
+
* the registry password
|
|
833
833
|
*/
|
|
834
834
|
password?: pulumi.Input<string>;
|
|
835
835
|
/**
|
|
@@ -851,7 +851,7 @@ export interface RegistryImageBuildSecret {
|
|
|
851
851
|
*/
|
|
852
852
|
env?: pulumi.Input<string>;
|
|
853
853
|
/**
|
|
854
|
-
*
|
|
854
|
+
* ID of the secret. By default, secrets are mounted to /run/secrets/\n\n
|
|
855
855
|
*/
|
|
856
856
|
id: pulumi.Input<string>;
|
|
857
857
|
/**
|
|
@@ -865,7 +865,7 @@ export interface RegistryImageBuildUlimit {
|
|
|
865
865
|
*/
|
|
866
866
|
hard: pulumi.Input<number>;
|
|
867
867
|
/**
|
|
868
|
-
*
|
|
868
|
+
* type of ulimit, e.g. `nofile`
|
|
869
869
|
*/
|
|
870
870
|
name: pulumi.Input<string>;
|
|
871
871
|
/**
|
|
@@ -1291,7 +1291,7 @@ export interface ServiceTaskSpecContainerSpec {
|
|
|
1291
1291
|
*/
|
|
1292
1292
|
groups?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1293
1293
|
/**
|
|
1294
|
-
* A test to perform to check that the container is healthy
|
|
1294
|
+
* A test to perform to check that the container is healthy. It works in the same way, and has the same default values, as the HEALTHCHECK Dockerfile instruction set by the service's Docker image. Your Compose file can override the values set in the Dockerfile.
|
|
1295
1295
|
*/
|
|
1296
1296
|
healthcheck?: pulumi.Input<inputs.ServiceTaskSpecContainerSpecHealthcheck>;
|
|
1297
1297
|
/**
|
|
@@ -1405,7 +1405,7 @@ export interface ServiceTaskSpecContainerSpecHealthcheck {
|
|
|
1405
1405
|
/**
|
|
1406
1406
|
* The test to perform as list
|
|
1407
1407
|
*/
|
|
1408
|
-
tests
|
|
1408
|
+
tests?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1409
1409
|
/**
|
|
1410
1410
|
* Maximum time to allow one check to run (ms|s|m|h). Defaults to `0s`.
|
|
1411
1411
|
*/
|
package/types/output.d.ts
CHANGED
|
@@ -583,7 +583,7 @@ export interface RegistryImageBuild {
|
|
|
583
583
|
*/
|
|
584
584
|
additionalContexts?: string[];
|
|
585
585
|
/**
|
|
586
|
-
*
|
|
586
|
+
* The configuration for the authentication
|
|
587
587
|
*/
|
|
588
588
|
authConfigs?: outputs.RegistryImageBuildAuthConfig[];
|
|
589
589
|
/**
|
|
@@ -759,7 +759,7 @@ export interface RegistryImageBuildAuthConfig {
|
|
|
759
759
|
*/
|
|
760
760
|
identityToken?: string;
|
|
761
761
|
/**
|
|
762
|
-
*
|
|
762
|
+
* the registry password
|
|
763
763
|
*/
|
|
764
764
|
password?: string;
|
|
765
765
|
/**
|
|
@@ -781,7 +781,7 @@ export interface RegistryImageBuildSecret {
|
|
|
781
781
|
*/
|
|
782
782
|
env?: string;
|
|
783
783
|
/**
|
|
784
|
-
*
|
|
784
|
+
* ID of the secret. By default, secrets are mounted to /run/secrets/\n\n
|
|
785
785
|
*/
|
|
786
786
|
id: string;
|
|
787
787
|
/**
|
|
@@ -795,7 +795,7 @@ export interface RegistryImageBuildUlimit {
|
|
|
795
795
|
*/
|
|
796
796
|
hard: number;
|
|
797
797
|
/**
|
|
798
|
-
*
|
|
798
|
+
* type of ulimit, e.g. `nofile`
|
|
799
799
|
*/
|
|
800
800
|
name: string;
|
|
801
801
|
/**
|
|
@@ -1221,7 +1221,7 @@ export interface ServiceTaskSpecContainerSpec {
|
|
|
1221
1221
|
*/
|
|
1222
1222
|
groups?: string[];
|
|
1223
1223
|
/**
|
|
1224
|
-
* A test to perform to check that the container is healthy
|
|
1224
|
+
* A test to perform to check that the container is healthy. It works in the same way, and has the same default values, as the HEALTHCHECK Dockerfile instruction set by the service's Docker image. Your Compose file can override the values set in the Dockerfile.
|
|
1225
1225
|
*/
|
|
1226
1226
|
healthcheck: outputs.ServiceTaskSpecContainerSpecHealthcheck;
|
|
1227
1227
|
/**
|
|
@@ -1335,7 +1335,7 @@ export interface ServiceTaskSpecContainerSpecHealthcheck {
|
|
|
1335
1335
|
/**
|
|
1336
1336
|
* The test to perform as list
|
|
1337
1337
|
*/
|
|
1338
|
-
tests
|
|
1338
|
+
tests?: string[];
|
|
1339
1339
|
/**
|
|
1340
1340
|
* Maximum time to allow one check to run (ms|s|m|h). Defaults to `0s`.
|
|
1341
1341
|
*/
|