diff --git a/website/source/docs/builders/docker.html.md b/website/source/docs/builders/docker.html.md index 838775704..7734f03d1 100644 --- a/website/source/docs/builders/docker.html.md +++ b/website/source/docs/builders/docker.html.md @@ -1,4 +1,4 @@ ---- +hashicorp--- description: | The docker Packer builder builds Docker images using Docker. The builder 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", - "repository": "mitchellh/packer", + "repository": "hashicorp/packer", "tag": "0.7" }, "docker-push" @@ -266,7 +266,7 @@ which tags and pushes an image. This is accomplished using a sequence definition [ { "type": "docker-tag", - "repository": "mitchellh/packer", + "repository": "hashicorp/packer", "tag": "0.7" }, "docker-push" @@ -291,7 +291,7 @@ nearly-identical sequence definitions, as demonstrated by the example below: [ { "type": "docker-tag", - "repository": "mitchellh/packer", + "repository": "hashicorp/packer", "tag": "0.7" }, "docker-push" diff --git a/website/source/docs/extending/custom-builders.html.md b/website/source/docs/extending/custom-builders.html.md index a2ea25165..7cd31b161 100644 --- a/website/source/docs/extending/custom-builders.html.md +++ b/website/source/docs/extending/custom-builders.html.md @@ -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 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 -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 the artifact results, so it is important it never changes. diff --git a/website/source/docs/extending/plugins.html.md b/website/source/docs/extending/plugins.html.md index 3269fbbce..0cc4aa724 100644 --- a/website/source/docs/extending/plugins.html.md +++ b/website/source/docs/extending/plugins.html.md @@ -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 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. - `github.com/hashicorp/packer/packer/plugin` - Contains the code to serve diff --git a/website/source/docs/install/index.html.md b/website/source/docs/install/index.html.md index fa8af69b4..bad2ff6b3 100644 --- a/website/source/docs/install/index.html.md +++ b/website/source/docs/install/index.html.md @@ -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`: ``` shell - $ mkdir -p $GOPATH/src/github.com/mitchellh && cd $! - $ git clone https://github.com/mitchellh/packer.git + $ mkdir -p $GOPATH/src/github.com/hashicorp && cd $! + $ git clone https://github.com/hashicorp/packer.git $ cd packer ``` diff --git a/website/source/docs/post-processors/docker-import.html.md b/website/source/docs/post-processors/docker-import.html.md index e4805406c..a4682da3d 100644 --- a/website/source/docs/post-processors/docker-import.html.md +++ b/website/source/docs/post-processors/docker-import.html.md @@ -36,13 +36,13 @@ An example is shown below, showing only the post-processor configuration: ``` json { "type": "docker-import", - "repository": "mitchellh/packer", + "repository": "hashicorp/packer", "tag": "0.7" } ``` 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 [docker-push](/docs/post-processors/docker-push.html) post-processor to push it diff --git a/website/source/docs/post-processors/docker-tag.html.md b/website/source/docs/post-processors/docker-tag.html.md index 6aa9e1935..725a2b197 100644 --- a/website/source/docs/post-processors/docker-tag.html.md +++ b/website/source/docs/post-processors/docker-tag.html.md @@ -44,13 +44,13 @@ An example is shown below, showing only the post-processor configuration: ``` json { "type": "docker-tag", - "repository": "mitchellh/packer", + "repository": "hashicorp/packer", "tag": "0.7" } ``` 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 [docker-push](/docs/post-processors/docker-push.html) post-processor to push it diff --git a/website/source/intro/getting-started/next.html.md b/website/source/intro/getting-started/next.html.md index 7a1de984b..7ee314893 100644 --- a/website/source/intro/getting-started/next.html.md +++ b/website/source/intro/getting-started/next.html.md @@ -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 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. diff --git a/website/source/layouts/_sidebar.erb b/website/source/layouts/_sidebar.erb index cc1073c85..d13902499 100644 --- a/website/source/layouts/_sidebar.erb +++ b/website/source/layouts/_sidebar.erb @@ -22,7 +22,7 @@
  • - + <%= inline_svg "github.svg" %> GitHub
  • diff --git a/website/source/layouts/layout.erb b/website/source/layouts/layout.erb index 35d136d7c..ab0f53361 100644 --- a/website/source/layouts/layout.erb +++ b/website/source/layouts/layout.erb @@ -82,7 +82,7 @@
  • - + <%= inline_svg "github.svg" %> GitHub
  • @@ -139,7 +139,7 @@ "url": "https://www.packer.io", "logo": "<%= File.join(base_url, image_path("logo-hashicorp.svg")) %>", "sameAs": [ - "https://github.com/mitchellh/packer" + "https://github.com/hashicorp/packer" ] } diff --git a/website/source/security.html.erb b/website/source/security.html.erb index d86fa77ff..1d7b1355b 100644 --- a/website/source/security.html.erb +++ b/website/source/security.html.erb @@ -28,6 +28,6 @@ description: |-

    If you are not reporting a security sensitive vulnerability, please open - an issue on the Packer + an issue on the Packer GitHub repository.