Skip to content

Commit

Permalink
Merge pull request #1686 from aledbf/fix-dev-docs
Browse files Browse the repository at this point in the history
Fix development doc [ci skip]
  • Loading branch information
aledbf authored Nov 11, 2017
2 parents 39c3085 + ce24ec8 commit 27108da
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ $ go get -u github.com/golang/dep
This will automatically save the dependencies to the `vendor/` directory.

```console
$ cd $GOPATH/src/ingress-nginx
$ cd $GOPATH/src/k8s.io/ingress-nginx
$ dep ensure
$ dep ensure -update
$ dep prune
Expand All @@ -51,7 +51,7 @@ In order to use your local Docker, you may need to set the following environment
# "gcloud docker" (default) or "docker"
$ export DOCKER=<docker>

# "gcr.io/google_containers" (default), "index.docker.io", or your own registry
# "quay.io/kubernetes-ingress-controller" (default), "index.docker.io", or your own registry
$ export REGISTRY=<your-docker-registry>
```

Expand All @@ -69,13 +69,13 @@ $ make build
Build a local container image

```console
$ make docker-build TAG=<tag> PREFIX=$USER/ingress-controller
$ TAG=<tag> REGISTRY=$USER/ingress-controller make docker-build
```

Push the container image to a remote repository

```console
$ make docker-push TAG=<tag> PREFIX=$USER/ingress-controller
$ TAG=<tag> REGISTRY=$USER/ingress-controller make docker-push
```

## Deploying
Expand Down

0 comments on commit 27108da

Please sign in to comment.