Running gcloud app with logs no longer working?

I a couple of weeks ago I could run a local app preview using the option --enable-mvm-logs

Now when I do this, I get the error:

google.appengine.tools.docker.containers.ImageError: Image with tag google/appengine-log-server was not found

      

From reading elsewhere, the image names have changed, but it seems like the gcloud tool is still using the old name?

+3


source to share


1 answer


As a workaround, try the following two commands:



$ docker pull gcr.io/google_appengine/log-processor
$ docker pull gcr.io/google_appengine/log-server
$ docker tag gcr.io/google_appengine/log-processor google/appengine-log-processor
$ docker tag gcr.io/google_appengine/log-server google/appengine-log-server

      

+2


source







All Articles