From 1c14eb9c3ba620cc9c7cc51948c12d2f6746b7ec Mon Sep 17 00:00:00 2001 From: Andrew Lee Rubinger Date: Sun, 27 Mar 2016 00:01:29 -0400 Subject: [PATCH] #258 Use "gcloud" for the Docker push to the gcr repo --- docs/hellonode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/hellonode.md b/docs/hellonode.md index e6b3a3f0ee..0fbaef0f61 100755 --- a/docs/hellonode.md +++ b/docs/hellonode.md @@ -275,7 +275,7 @@ We can now build and publish a new container image to the registry with an incre ```shell docker build -t gcr.io/PROJECT_ID/hello-node:v2 . -docker push gcr.io/PROJECT_ID/hello-node:v2 +gcloud docker push gcr.io/PROJECT_ID/hello-node:v2 ``` Building and pushing this updated image should be much quicker as we take full advantage of the Docker cache.