Updating some references from mitchellh to hashicorp
This commit is contained in:
parent
446525201b
commit
df5e35f408
|
@ -1,4 +1,4 @@
|
||||||
---
|
hashicorp---
|
||||||
description: |
|
description: |
|
||||||
The docker Packer builder builds Docker images using Docker. The builder
|
The docker Packer builder builds Docker images using Docker. The builder
|
||||||
starts a Docker container, runs provisioners within this container, then
|
starts a Docker container, runs provisioners within this container, then
|
||||||
|
@ -227,7 +227,7 @@ post-processors that are treated as as single pipeline, see
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"type": "docker-import",
|
"type": "docker-import",
|
||||||
"repository": "mitchellh/packer",
|
"repository": "hashicorp/packer",
|
||||||
"tag": "0.7"
|
"tag": "0.7"
|
||||||
},
|
},
|
||||||
"docker-push"
|
"docker-push"
|
||||||
|
@ -266,7 +266,7 @@ which tags and pushes an image. This is accomplished using a sequence definition
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"type": "docker-tag",
|
"type": "docker-tag",
|
||||||
"repository": "mitchellh/packer",
|
"repository": "hashicorp/packer",
|
||||||
"tag": "0.7"
|
"tag": "0.7"
|
||||||
},
|
},
|
||||||
"docker-push"
|
"docker-push"
|
||||||
|
@ -291,7 +291,7 @@ nearly-identical sequence definitions, as demonstrated by the example below:
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"type": "docker-tag",
|
"type": "docker-tag",
|
||||||
"repository": "mitchellh/packer",
|
"repository": "hashicorp/packer",
|
||||||
"tag": "0.7"
|
"tag": "0.7"
|
||||||
},
|
},
|
||||||
"docker-push"
|
"docker-push"
|
||||||
|
|
|
@ -115,7 +115,7 @@ The only part of an artifact that may be confusing is the `BuilderId` method.
|
||||||
This method must return an absolutely unique ID for the builder. In general, I
|
This method must return an absolutely unique ID for the builder. In general, I
|
||||||
follow the practice of making the ID contain my GitHub username and then the
|
follow the practice of making the ID contain my GitHub username and then the
|
||||||
platform it is building for. For example, the builder ID of the VMware builder
|
platform it is building for. For example, the builder ID of the VMware builder
|
||||||
is "mitchellh.vmware" or something similar.
|
is "hashicorp.vmware" or something similar.
|
||||||
|
|
||||||
Post-processors use the builder ID value in order to make some assumptions about
|
Post-processors use the builder ID value in order to make some assumptions about
|
||||||
the artifact results, so it is important it never changes.
|
the artifact results, so it is important it never changes.
|
||||||
|
|
|
@ -114,7 +114,7 @@ the following two packages, you're encouraged to use whatever packages you want.
|
||||||
Because plugins are their own processes, there is no danger of colliding
|
Because plugins are their own processes, there is no danger of colliding
|
||||||
dependencies.
|
dependencies.
|
||||||
|
|
||||||
- `github.com/mitchellh/packer` - Contains all the interfaces that you have to
|
- `github.com/hashicorp/packer` - Contains all the interfaces that you have to
|
||||||
implement for any given plugin.
|
implement for any given plugin.
|
||||||
|
|
||||||
- `github.com/hashicorp/packer/packer/plugin` - Contains the code to serve
|
- `github.com/hashicorp/packer/packer/plugin` - Contains the code to serve
|
||||||
|
|
|
@ -41,8 +41,8 @@ as a copy of [`git`](https://www.git-scm.com/) in your `PATH`.
|
||||||
1. Clone the Packer repository from GitHub into your `GOPATH`:
|
1. Clone the Packer repository from GitHub into your `GOPATH`:
|
||||||
|
|
||||||
``` shell
|
``` shell
|
||||||
$ mkdir -p $GOPATH/src/github.com/mitchellh && cd $!
|
$ mkdir -p $GOPATH/src/github.com/hashicorp && cd $!
|
||||||
$ git clone https://github.com/mitchellh/packer.git
|
$ git clone https://github.com/hashicorp/packer.git
|
||||||
$ cd packer
|
$ cd packer
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -36,13 +36,13 @@ An example is shown below, showing only the post-processor configuration:
|
||||||
``` json
|
``` json
|
||||||
{
|
{
|
||||||
"type": "docker-import",
|
"type": "docker-import",
|
||||||
"repository": "mitchellh/packer",
|
"repository": "hashicorp/packer",
|
||||||
"tag": "0.7"
|
"tag": "0.7"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
This example would take the image created by the Docker builder and import it
|
This example would take the image created by the Docker builder and import it
|
||||||
into the local Docker process with a name of `mitchellh/packer:0.7`.
|
into the local Docker process with a name of `hashicorp/packer:0.7`.
|
||||||
|
|
||||||
Following this, you can use the
|
Following this, you can use the
|
||||||
[docker-push](/docs/post-processors/docker-push.html) post-processor to push it
|
[docker-push](/docs/post-processors/docker-push.html) post-processor to push it
|
||||||
|
|
|
@ -44,13 +44,13 @@ An example is shown below, showing only the post-processor configuration:
|
||||||
``` json
|
``` json
|
||||||
{
|
{
|
||||||
"type": "docker-tag",
|
"type": "docker-tag",
|
||||||
"repository": "mitchellh/packer",
|
"repository": "hashicorp/packer",
|
||||||
"tag": "0.7"
|
"tag": "0.7"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
This example would take the image created by the Docker builder and tag it into
|
This example would take the image created by the Docker builder and tag it into
|
||||||
the local Docker process with a name of `mitchellh/packer:0.7`.
|
the local Docker process with a name of `hashicorp/packer:0.7`.
|
||||||
|
|
||||||
Following this, you can use the
|
Following this, you can use the
|
||||||
[docker-push](/docs/post-processors/docker-push.html) post-processor to push it
|
[docker-push](/docs/post-processors/docker-push.html) post-processor to push it
|
||||||
|
|
|
@ -26,5 +26,5 @@ overview](https://atlas.hashicorp.com/help/intro/getting-started).
|
||||||
|
|
||||||
As you use Packer more, please voice your comments and concerns on the [mailing
|
As you use Packer more, please voice your comments and concerns on the [mailing
|
||||||
list or IRC](/community.html). Additionally, Packer is [open
|
list or IRC](/community.html). Additionally, Packer is [open
|
||||||
source](https://github.com/mitchellh/packer) so please contribute if you'd like
|
source](https://github.com/hashicorp/packer) so please contribute if you'd like
|
||||||
to. Contributions are very welcome.
|
to. Contributions are very welcome.
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="https://github.com/mitchellh/packer">
|
<a href="https://github.com/hashicorp/packer">
|
||||||
<%= inline_svg "github.svg" %> GitHub
|
<%= inline_svg "github.svg" %> GitHub
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
@ -82,7 +82,7 @@
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="https://github.com/mitchellh/packer">
|
<a href="https://github.com/hashicorp/packer">
|
||||||
<%= inline_svg "github.svg" %> GitHub
|
<%= inline_svg "github.svg" %> GitHub
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -139,7 +139,7 @@
|
||||||
"url": "https://www.packer.io",
|
"url": "https://www.packer.io",
|
||||||
"logo": "<%= File.join(base_url, image_path("logo-hashicorp.svg")) %>",
|
"logo": "<%= File.join(base_url, image_path("logo-hashicorp.svg")) %>",
|
||||||
"sameAs": [
|
"sameAs": [
|
||||||
"https://github.com/mitchellh/packer"
|
"https://github.com/hashicorp/packer"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -28,6 +28,6 @@ description: |-
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
If you are not reporting a security sensitive vulnerability, please open
|
If you are not reporting a security sensitive vulnerability, please open
|
||||||
an issue on the <a href="https://github.com/mitchellh/packer">Packer
|
an issue on the <a href="https://github.com/hashicorp/packer">Packer
|
||||||
GitHub repository</a>.
|
GitHub repository</a>.
|
||||||
</p>
|
</p>
|
||||||
|
|
Loading…
Reference in New Issue