@cdktn/provider-docker 12.1.0 → 13.1.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/.jsii +9058 -3437
- package/README.md +13 -13
- package/lib/buildx-builder/index.d.ts +110 -110
- package/lib/buildx-builder/index.js +148 -148
- package/lib/config/index.d.ts +12 -12
- package/lib/config/index.js +16 -16
- package/lib/container/index.d.ts +367 -345
- package/lib/container/index.js +428 -381
- package/lib/data-docker-image/index.d.ts +11 -11
- package/lib/data-docker-image/index.js +14 -14
- package/lib/data-docker-logs/index.d.ts +49 -49
- package/lib/data-docker-logs/index.js +34 -34
- package/lib/data-docker-network/index.d.ts +18 -18
- package/lib/data-docker-network/index.js +22 -22
- package/lib/data-docker-plugin/index.d.ts +13 -13
- package/lib/data-docker-plugin/index.js +15 -15
- package/lib/data-docker-registry-image/index.d.ts +16 -16
- package/lib/data-docker-registry-image/index.js +16 -16
- package/lib/data-docker-registry-image-manifests/index.d.ts +27 -27
- package/lib/data-docker-registry-image-manifests/index.js +36 -36
- package/lib/image/index.d.ts +174 -152
- package/lib/image/index.js +223 -171
- package/lib/index.d.ts +1 -1
- package/lib/index.js +3 -3
- package/lib/lazy-index.d.ts +1 -1
- package/lib/lazy-index.js +3 -3
- package/lib/network/index.d.ts +74 -74
- package/lib/network/index.js +66 -66
- package/lib/plugin/index.d.ts +50 -50
- package/lib/plugin/index.js +45 -45
- package/lib/provider/index.d.ts +35 -35
- package/lib/provider/index.js +46 -46
- package/lib/registry-image/index.d.ts +809 -28
- package/lib/registry-image/index.js +1883 -35
- package/lib/secret/index.d.ts +28 -28
- package/lib/secret/index.js +31 -31
- package/lib/service/index.d.ts +352 -351
- package/lib/service/index.js +491 -488
- package/lib/tag/index.d.ts +13 -13
- package/lib/tag/index.js +19 -19
- package/lib/volume/index.d.ts +154 -29
- package/lib/volume/index.js +349 -38
- package/package.json +20 -10
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
|
-
#
|
|
2
|
+
# CDKTN prebuilt bindings for kreuzwerker/docker provider version 3.9.0
|
|
3
3
|
|
|
4
|
-
This repo builds and publishes the [Terraform docker provider](https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
4
|
+
This repo builds and publishes the [Terraform docker provider](https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0/docs) bindings for [CDK Terrain](https://cdktn.io).
|
|
5
5
|
|
|
6
6
|
## Available Packages
|
|
7
7
|
|
|
@@ -19,17 +19,17 @@ The PyPI package is available at [https://pypi.org/project/cdktn-provider-docker
|
|
|
19
19
|
|
|
20
20
|
### Nuget
|
|
21
21
|
|
|
22
|
-
The Nuget package is available at [https://www.nuget.org/packages/Io.Cdktn.
|
|
22
|
+
The Nuget package is available at [https://www.nuget.org/packages/Io.Cdktn.Providers.Docker](https://www.nuget.org/packages/Io.Cdktn.Providers.Docker).
|
|
23
23
|
|
|
24
|
-
`dotnet add package Io.Cdktn.
|
|
24
|
+
`dotnet add package Io.Cdktn.Providers.Docker`
|
|
25
25
|
|
|
26
26
|
### Maven
|
|
27
27
|
|
|
28
|
-
The Maven package is available at [https://mvnrepository.com/artifact/
|
|
28
|
+
The Maven package is available at [https://mvnrepository.com/artifact/io.cdktn/cdktn-provider-docker](https://mvnrepository.com/artifact/io.cdktn/cdktn-provider-docker).
|
|
29
29
|
|
|
30
30
|
```
|
|
31
31
|
<dependency>
|
|
32
|
-
<groupId>
|
|
32
|
+
<groupId>io.cdktn</groupId>
|
|
33
33
|
<artifactId>cdktn-provider-docker</artifactId>
|
|
34
34
|
<version>[REPLACE WITH DESIRED VERSION]</version>
|
|
35
35
|
</dependency>
|
|
@@ -58,22 +58,22 @@ You can also visit a hosted version of the documentation on [constructs.dev](htt
|
|
|
58
58
|
|
|
59
59
|
## Versioning
|
|
60
60
|
|
|
61
|
-
This project is explicitly not tracking the Terraform docker provider version 1:1. In fact, it always tracks `latest` of `~> 3.0` with every release. If there are scenarios where you explicitly have to pin your provider version, you can do so by [generating the provider constructs manually](https://
|
|
61
|
+
This project is explicitly not tracking the Terraform docker provider version 1:1. In fact, it always tracks `latest` of `~> 3.0` with every release. If there are scenarios where you explicitly have to pin your provider version, you can do so by [generating the provider constructs manually](https://cdktn.io/docs/concepts/providers#import-providers).
|
|
62
62
|
|
|
63
63
|
These are the upstream dependencies:
|
|
64
64
|
|
|
65
|
-
- [CDK
|
|
66
|
-
- [Terraform docker provider](https://registry.terraform.io/providers/kreuzwerker/docker/3.
|
|
65
|
+
- [CDK Terrain](https://cdktn.io) - Last official release
|
|
66
|
+
- [Terraform docker provider](https://registry.terraform.io/providers/kreuzwerker/docker/3.9.0)
|
|
67
67
|
- [Terraform Engine](https://terraform.io)
|
|
68
68
|
|
|
69
69
|
If there are breaking changes (backward incompatible) in any of the above, the major version of this project will be bumped.
|
|
70
70
|
|
|
71
71
|
## Features / Issues / Bugs
|
|
72
72
|
|
|
73
|
-
Please report bugs and issues to the [CDK
|
|
73
|
+
Please report bugs and issues to the [CDK Terrain](https://cdktn.io) project:
|
|
74
74
|
|
|
75
|
-
- [Create bug report](https://
|
|
76
|
-
- [Create feature request](https://
|
|
75
|
+
- [Create bug report](https://github.com/open-constructs/cdk-terrain/issues)
|
|
76
|
+
- [Create feature request](https://github.com/open-constructs/cdk-terrain/issues)
|
|
77
77
|
|
|
78
78
|
## Contributing
|
|
79
79
|
|
|
@@ -83,7 +83,7 @@ This is mostly based on [Projen](https://projen.io), which takes care of generat
|
|
|
83
83
|
|
|
84
84
|
### cdktn-provider-project based on Projen
|
|
85
85
|
|
|
86
|
-
There's a custom [project builder](https://github.com/cdktn-io/cdktn-provider-project) which encapsulate the common settings for all `
|
|
86
|
+
There's a custom [project builder](https://github.com/cdktn-io/cdktn-provider-project) which encapsulate the common settings for all `cdktn` prebuilt providers.
|
|
87
87
|
|
|
88
88
|
### Provider Version
|
|
89
89
|
|