mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2026-02-03 04:09:29 -05:00
chore: prepare release v2.18.0
This commit is contained in:
parent
401ff5e8ad
commit
a85c9e7c79
5 changed files with 16 additions and 6 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
|
@ -1,3 +1,13 @@
|
|||
## 2.18.0 (July 11, 2022)
|
||||
|
||||
IMPROVEMENTS
|
||||
* add `runtime`, `stop_signal` and `stop_timeout` properties to the docker_container resource ([#364](https://github.com/kreuzwerker/terraform-provider-docker/issues/364))
|
||||
|
||||
BUG FIXES
|
||||
* Various fixes to `docker_registry_image` to correctly handle build files and file permissions ([#398](https://github.com/kreuzwerker/terraform-provider-docker/pull/398))
|
||||
* Fix `website-generation` Github-Action ([#399](https://github.com/kreuzwerker/terraform-provider-docker/pull/399))
|
||||
|
||||
|
||||
## 2.17.0 (June 23, 2022)
|
||||
|
||||
IMPROVEMENTS
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ $ make build
|
|||
|
||||
## Example usage
|
||||
|
||||
Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/2.17.0/docs) of the registry
|
||||
Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/2.18.0/docs) of the registry
|
||||
or use the following example:
|
||||
|
||||
|
||||
|
|
@ -47,7 +47,7 @@ terraform {
|
|||
# since new versions are released frequently
|
||||
docker = {
|
||||
source = "kreuzwerker/docker"
|
||||
version = "2.17.0"
|
||||
version = "2.18.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ terraform {
|
|||
required_providers {
|
||||
docker = {
|
||||
source = "kreuzwerker/docker"
|
||||
version = "2.17.0"
|
||||
version = "2.18.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -50,7 +50,7 @@ Terraform 0.12 and earlier:
|
|||
|
||||
```terraform
|
||||
provider "docker" {
|
||||
version = "~> 2.17.0"
|
||||
version = "~> 2.18.0"
|
||||
host = "unix:///var/run/docker.sock"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
provider "docker" {
|
||||
version = "~> 2.17.0"
|
||||
version = "~> 2.18.0"
|
||||
host = "unix:///var/run/docker.sock"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ terraform {
|
|||
required_providers {
|
||||
docker = {
|
||||
source = "kreuzwerker/docker"
|
||||
version = "2.17.0"
|
||||
version = "2.18.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue