File tree Expand file tree Collapse file tree 4 files changed +22
-4
lines changed
Expand file tree Collapse file tree 4 files changed +22
-4
lines changed Original file line number Diff line number Diff line change 11
2+ <a name =" v3.6.2 " ></a >
3+ ## [ v3.6.2] ( https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.6.1...v3.6.2 ) (2025-06-13)
4+
5+ ### Feat
6+
7+ * Allow digest in image name ([ #744 ] ( https://github.com/kreuzwerker/terraform-provider-docker/issues/744 ) )
8+
9+ ### Fix
10+
11+ * Remove wrong buildkit version assignment ([ #747 ] ( https://github.com/kreuzwerker/terraform-provider-docker/issues/747 ) )
12+ * Reading non existant volume should recreate ([ #749 ] ( https://github.com/kreuzwerker/terraform-provider-docker/issues/749 ) )
13+ * Typo in cgroup_parent handling ([ #746 ] ( https://github.com/kreuzwerker/terraform-provider-docker/issues/746 ) )
14+
15+
216<a name =" v3.6.1 " ></a >
317## [ v3.6.1] ( https://github.com/kreuzwerker/terraform-provider-docker/compare/v3.6.0...v3.6.1 ) (2025-06-05)
418
19+ ### Chore
20+
21+ * Prepare release v3.6.1 ([ #743 ] ( https://github.com/kreuzwerker/terraform-provider-docker/issues/743 ) )
22+
523### Feat
624
725* allow to set the cgroup parent for container ([ #609 ] ( https://github.com/kreuzwerker/terraform-provider-docker/issues/609 ) )
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ Do you want to migrate from `v2.x` to `v3.x`? Please read the [migration guide](
2626
2727## Example usage
2828
29- Take a look at the examples in the [ documentation] ( https://registry.terraform.io/providers/kreuzwerker/docker/3.6.1 /docs ) of the registry
29+ Take a look at the examples in the [ documentation] ( https://registry.terraform.io/providers/kreuzwerker/docker/3.6.2 /docs ) of the registry
3030or use the following example:
3131
3232
@@ -38,7 +38,7 @@ terraform {
3838 # since new versions are released frequently
3939 docker = {
4040 source = "kreuzwerker/docker"
41- version = "3.6.1 "
41+ version = "3.6.2 "
4242 }
4343 }
4444}
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ terraform {
2525 required_providers {
2626 docker = {
2727 source = "kreuzwerker/docker"
28- version = "3.6.1 "
28+ version = "3.6.2 "
2929 }
3030 }
3131}
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ terraform {
22 required_providers {
33 docker = {
44 source = " kreuzwerker/docker"
5- version = " 3.6.1 "
5+ version = " 3.6.2 "
66 }
77 }
88}
You can’t perform that action at this time.
0 commit comments