Merge pull request #1686 from aledbf/fix-dev-docs
Fix development doc [ci skip]
This commit is contained in:
commit
27108da170
1 changed files with 4 additions and 4 deletions
|
@ -33,7 +33,7 @@ $ go get -u github.com/golang/dep
|
||||||
This will automatically save the dependencies to the `vendor/` directory.
|
This will automatically save the dependencies to the `vendor/` directory.
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ cd $GOPATH/src/ingress-nginx
|
$ cd $GOPATH/src/k8s.io/ingress-nginx
|
||||||
$ dep ensure
|
$ dep ensure
|
||||||
$ dep ensure -update
|
$ dep ensure -update
|
||||||
$ dep prune
|
$ dep prune
|
||||||
|
@ -51,7 +51,7 @@ In order to use your local Docker, you may need to set the following environment
|
||||||
# "gcloud docker" (default) or "docker"
|
# "gcloud docker" (default) or "docker"
|
||||||
$ export DOCKER=<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>
|
$ export REGISTRY=<your-docker-registry>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -69,13 +69,13 @@ $ make build
|
||||||
Build a local container image
|
Build a local container image
|
||||||
|
|
||||||
```console
|
```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
|
Push the container image to a remote repository
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ make docker-push TAG=<tag> PREFIX=$USER/ingress-controller
|
$ TAG=<tag> REGISTRY=$USER/ingress-controller make docker-push
|
||||||
```
|
```
|
||||||
|
|
||||||
## Deploying
|
## Deploying
|
||||||
|
|
Loading…
Reference in a new issue