diff --git a/docs/README.md b/docs/README.md index 57cdb1ce..8f1bdb31 100644 --- a/docs/README.md +++ b/docs/README.md @@ -9,7 +9,6 @@ This directory contains advanced docs around the Functions Framework. ## TODO Docs - TODO: Run Multiple Cloud Functions [#23](https://github.com/GoogleCloudPlatform/functions-framework-nodejs/issues/23) -- TODO: Deploy to Cloud Run [#28](https://github.com/GoogleCloudPlatform/functions-framework-nodejs/pull/28) ## Debugging functions diff --git a/docs/docker.md b/docs/docker.md index b8224df7..a9d7a92b 100644 --- a/docs/docker.md +++ b/docs/docker.md @@ -50,7 +50,7 @@ Use the `docker` and `gcloud` CLIs to build and deploy a container to Cloud Run, ```sh docker build -t gcr.io/$GOOGLE_CLOUD_PROJECT/helloworld . docker push gcr.io/$GOOGLE_CLOUD_PROJECT/helloworld -gcloud beta run deploy helloworld --image gcr.io/$GOOGLE_CLOUD_PROJECT/helloworld --region us-central1 +gcloud run deploy helloworld --image gcr.io/$GOOGLE_CLOUD_PROJECT/helloworld --region us-central1 ``` If you want even more control over the environment, you can [deploy your container image to Cloud Run on GKE](https://cloud.google.com/run/docs/quickstarts/prebuilt-deploy-gke). With Cloud Run on GKE, you can run your function on a GKE cluster, which gives you additional control over the environment (including use of GPU-based instances, longer timeouts and more).