Raghu Raghavan
1 min readJun 30, 2017

--

Noticed a small thing. The article suggests the following syntax for pushing Docker images to gcr.io:

$ gcloud docker push gcr.io/<YOUR-PROJECT-ID>/myapp

It appears that the syntax ought to be:

$ gcloud docker -- push gcr.io/<YOUR-PROJECT-ID>/myapp

--

--