mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2025-12-25 17:19:34 -05:00
docs: fix a few typos (#216)
This commit is contained in:
parent
a0d51e2a09
commit
460bc7a0c3
2 changed files with 6 additions and 6 deletions
|
|
@ -1,11 +1,11 @@
|
|||
# Contributing
|
||||
|
||||
By participating to this project, you agree to abide our [code of conduct](/CODE_OF_CONDUCT.md).
|
||||
By participating in this project, you agree to abide our [code of conduct](/CODE_OF_CONDUCT.md).
|
||||
|
||||
## Write Issue
|
||||
|
||||
When you have a bug report or feature request or something, please create an issue from [here](https://github.com/kreuzwerker/terraform-provider-docker/issues/new/choose).
|
||||
Before creating an issue, please check whether same or releated issues exist.
|
||||
Before creating an issue, please check whether same or related issues exist.
|
||||
Please use issue templates as much as possible.
|
||||
|
||||
### Guide of Bug report
|
||||
|
|
@ -18,7 +18,7 @@ Please use issue templates as much as possible.
|
|||
* Don't include unneeded resources to reproduce the problem
|
||||
* Don't set unneeded attributes to reproduce the problem
|
||||
|
||||
## Setup your machine
|
||||
## Set up your machine
|
||||
|
||||
`terraform-provider-docker` is written in [Go](https://golang.org/).
|
||||
|
||||
|
|
@ -148,7 +148,7 @@ resource "docker_container" "foo" {
|
|||
}
|
||||
```
|
||||
|
||||
As the next step we can init terraform by provider a local plugin directory:
|
||||
As the next step we can init terraform by providing a local plugin directory:
|
||||
```sh
|
||||
# Which reflects the convention mentioned before
|
||||
# See https://www.terraform.io/docs/commands/init.html#plugin-installation
|
||||
|
|
@ -184,6 +184,6 @@ pull request against the master branch.
|
|||
|
||||
## Releasing
|
||||
- Update the `CHANGELOG.md` by hand by [comparing](https://github.com/kreuzwerker/terraform-provider-docker/compare/v2.11.0...master) with the latest release, e.g. `v2.11.0`
|
||||
- Replace all occurences of the latest release, e.g. `v2.11.0` with the new one, e.g. `v2.12.2`, execpt in the files `CHANGELOG.md`, `CONTRIBUTING.md`, `docs/**/*`
|
||||
- Replace all occurrences of the latest release, e.g. `v2.11.0` with the new one, e.g. `v2.12.2`, except in the files `CHANGELOG.md`, `CONTRIBUTING.md`, `docs/**/*`
|
||||
- regenerate the website: `make website-generation`
|
||||
- run `git tag v2.12.2 && git push origin master v2.12.2`
|
||||
|
|
@ -29,7 +29,7 @@ you need to use it in combination with `docker_registry_image` as follows:
|
|||
### Build
|
||||
|
||||
You can also use the resource to build an image.
|
||||
In thid case the image "zoo" and "zoo:develop" are built.
|
||||
In this case the image "zoo" and "zoo:develop" are built.
|
||||
|
||||
{{tffile "examples/resources/docker_image/resource-build.tf"}}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue