Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
fix(dev-env): refer to docker-machine consistently
Browse files Browse the repository at this point in the history
`deis-docker` is transposed as `docker-deis` in a few places. The original docker-machine machine is created as `deis-docker` so I figure that's the correct one.
  • Loading branch information
jschneiderhan committed Nov 29, 2016
1 parent 12cd990 commit 1031267
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/contributing/development-environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ This will create a new virtual machine named `deis-docker` that will take up as
Once the `deis-docker` machine exists, source its values into your environment so your docker client knows how to use the new machine. You may even choose to add this to your bash profile or similar.

```
$ eval "$(docker-machine env docker-deis)"
$ eval "$(docker-machine env deis-docker)"
```

After following these steps, some Docker Machine users report a slight delay (30 - 60 seconds) before the Docker server is ready.
Expand Down Expand Up @@ -158,7 +158,7 @@ export DEIS_REGISTRY=<IP of the host machine>:5000
In non-Linux environments:

```
export DEIS_REGISTRY=<IP of the docker-deis Docker Machine VM>:5000/
export DEIS_REGISTRY=<IP of the deis-docker Docker Machine VM>:5000/
```

If your development cluster runs on a cloud provider such as Google Container Engine, a local registry such as the one above will not be accessible to your Kubernetes nodes. In such cases, a public registry such as [DockerHub][dh] or [quay.io][quay] will suffice.
Expand Down

0 comments on commit 1031267

Please sign in to comment.