diff --git a/run/hello-broken/README.md b/run/hello-broken/README.md index 9606d1f9afd..f175c932bee 100644 --- a/run/hello-broken/README.md +++ b/run/hello-broken/README.md @@ -18,7 +18,7 @@ docker build --tag hello-broken:python . ## Run Locally ``` -docker run --rm -p 9090:8080 hello-broken:python +docker run --rm -p 9090:8080 -e PORT=8080 hello-broken:python ``` ## Test @@ -44,4 +44,4 @@ gcloud run deploy hello-broken \ ``` -For more details on how to work with this sample read the [Python Cloud Run Samples README](https://github.com/GoogleCloudPlatform/python-docs-samples/tree/master/run) \ No newline at end of file +For more details on how to work with this sample read the [Python Cloud Run Samples README](https://github.com/GoogleCloudPlatform/python-docs-samples/tree/master/run) diff --git a/run/image-processing/README.md b/run/image-processing/README.md index e17ee13f521..12f515770b8 100644 --- a/run/image-processing/README.md +++ b/run/image-processing/README.md @@ -18,7 +18,7 @@ docker build --tag pubsub-tutorial:python . ## Run Locally ``` -docker run --rm -p 9090:8080 pubsub-tutorial:python +docker run --rm -p 9090:8080 -e PORT=8080 pubsub-tutorial:python ``` ## Test diff --git a/run/logging-manual/README.md b/run/logging-manual/README.md index 54bcebdec7d..069367aa7ee 100644 --- a/run/logging-manual/README.md +++ b/run/logging-manual/README.md @@ -16,7 +16,7 @@ docker build --tag logging-manual:python . ## Run Locally ``` -docker run --rm -p 9090:8080 logging-manual:python +docker run --rm -p 9090:8080 -e PORT=8080 logging-manual:python ``` ## Test @@ -44,4 +44,4 @@ gcloud beta run deploy logging-manual \ Read more about Cloud Run logging in the [Logging How-to Guide](http://cloud.google.com/run/docs/logging). -For more details on how to work with this sample read the [Python Cloud Run Samples README](https://github.com/GoogleCloudPlatform/python-docs-samples/tree/master/run) \ No newline at end of file +For more details on how to work with this sample read the [Python Cloud Run Samples README](https://github.com/GoogleCloudPlatform/python-docs-samples/tree/master/run) diff --git a/run/pubsub/README.md b/run/pubsub/README.md index aa741fdc6de..9d48450fad1 100644 --- a/run/pubsub/README.md +++ b/run/pubsub/README.md @@ -18,7 +18,7 @@ docker build --tag pubsub-tutorial:python . ## Run Locally ``` -docker run --rm -p 9090:8080 pubsub-tutorial:python +docker run --rm -p 9090:8080 -e PORT=8080 pubsub-tutorial:python ``` ## Test diff --git a/run/system-package/README.md b/run/system-package/README.md index 4b6cfa7b756..92f82419021 100644 --- a/run/system-package/README.md +++ b/run/system-package/README.md @@ -19,7 +19,7 @@ docker build --tag graphviz:python . ## Run Locally ``` -docker run --rm -p 9090:8080 graphviz:python +docker run --rm -p 9090:8080 -e PORT=8080 graphviz:python ``` ## Test