mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2026-02-03 04:09:29 -05:00
chore: prepare release v2.14.0
This commit is contained in:
parent
ce43fbee6f
commit
934bc2935f
5 changed files with 26 additions and 6 deletions
20
CHANGELOG.md
20
CHANGELOG.md
|
|
@ -1,3 +1,23 @@
|
|||
## 2.14.0 (JuLy 09, 2021)
|
||||
|
||||
IMPROVEMENTS
|
||||
- support terraform v1 ([#242](https://github.com/kreuzwerker/terraform-provider-docker/issues/242))
|
||||
|
||||
BUG FIXES
|
||||
- registry_image): consider .dockerignore in image build ([#240](https://github.com/kreuzwerker/terraform-provider-docker/issues/240))
|
||||
- Update the URL of the docker hub registry ([#230](https://github.com/kreuzwerker/terraform-provider-docker/issues/230))
|
||||
- service bind options ([#234](https://github.com/kreuzwerker/terraform-provider-docker/issues/234))
|
||||
- deps: update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.7.0 ([#236](https://github.com/kreuzwerker/terraform-provider-docker/issues/236))
|
||||
|
||||
DOCS
|
||||
- update to absolute path for registry image context ([#246](https://github.com/kreuzwerker/terraform-provider-docker/issues/246))
|
||||
- service entrypoint ([#244](https://github.com/kreuzwerker/terraform-provider-docker/issues/244))
|
||||
- update readme with logos and subsections ([#235](https://github.com/kreuzwerker/terraform-provider-docker/issues/235))
|
||||
|
||||
CHORE
|
||||
- deps: update nginx docker tag to v1.21.1 ([#243](https://github.com/kreuzwerker/terraform-provider-docker/issues/243))
|
||||
- deps: update tj-actions/verify-changed-files action to v7 ([#237](https://github.com/kreuzwerker/terraform-provider-docker/issues/237))
|
||||
- deps: update nginx:1.21.0 docker digest to d1b8ff2 ([#232](https://github.com/kreuzwerker/terraform-provider-docker/issues/232))
|
||||
## 2.13.0 (June 22, 2021)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ $ make build
|
|||
|
||||
## Example usage
|
||||
|
||||
Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/2.13.0/docs) of the registry
|
||||
Take a look at the examples in the [documentation](https://registry.terraform.io/providers/kreuzwerker/docker/2.14.0/docs) of the registry
|
||||
or use the following example:
|
||||
|
||||
|
||||
|
|
@ -40,7 +40,7 @@ terraform {
|
|||
# since new versions are released frequently
|
||||
docker = {
|
||||
source = "kreuzwerker/docker"
|
||||
version = "2.13.0"
|
||||
version = "2.14.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ terraform {
|
|||
required_providers {
|
||||
docker = {
|
||||
source = "kreuzwerker/docker"
|
||||
version = "2.13.0"
|
||||
version = "2.14.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -50,7 +50,7 @@ Terraform 0.12 and earlier:
|
|||
|
||||
```terraform
|
||||
provider "docker" {
|
||||
version = "~> 2.13.0"
|
||||
version = "~> 2.14.0"
|
||||
host = "unix:///var/run/docker.sock"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
provider "docker" {
|
||||
version = "~> 2.13.0"
|
||||
version = "~> 2.14.0"
|
||||
host = "unix:///var/run/docker.sock"
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ terraform {
|
|||
required_providers {
|
||||
docker = {
|
||||
source = "kreuzwerker/docker"
|
||||
version = "2.13.0"
|
||||
version = "2.14.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue