diff --git a/docs/development.md b/docs/development.md index b00fcf2ea..4cc91f6c0 100644 --- a/docs/development.md +++ b/docs/development.md @@ -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 @@ -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= -# "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= ``` @@ -69,13 +69,13 @@ $ make build Build a local container image ```console -$ make docker-build TAG= PREFIX=$USER/ingress-controller +$ TAG= REGISTRY=$USER/ingress-controller make docker-build ``` Push the container image to a remote repository ```console -$ make docker-push TAG= PREFIX=$USER/ingress-controller +$ TAG= REGISTRY=$USER/ingress-controller make docker-push ``` ## Deploying