Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meteatamel/cloud-run-dotnetcore-31
.NET Core 3.1 on Cloud Run: https://dotnetcore31-paelpl5x6a-ew.a.run.app/
https://github.com/meteatamel/cloud-run-dotnetcore-31
cloud-run dotnet-core google-cloud-run
Last synced: about 1 month ago
JSON representation
.NET Core 3.1 on Cloud Run: https://dotnetcore31-paelpl5x6a-ew.a.run.app/
- Host: GitHub
- URL: https://github.com/meteatamel/cloud-run-dotnetcore-31
- Owner: meteatamel
- License: apache-2.0
- Created: 2019-12-04T10:26:20.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-04T10:28:42.000Z (about 5 years ago)
- Last Synced: 2024-12-19T16:58:56.518Z (about 1 month ago)
- Topics: cloud-run, dotnet-core, google-cloud-run
- Language: C#
- Size: 8.79 KB
- Stars: 7
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# .NET Core 3.1 on Google Cloud Run
[![Run on Google Cloud](https://deploy.cloud.run/button.svg)](https://deploy.cloud.run)
.NET Core 3.1 was [released](https://devblogs.microsoft.com/dotnet/announcing-net-core-3-1/) on December 3rd, 2019 and is a LTS release, supported for three years.
## Deploy to Cloud Run
[Cloud Run](https://cloud.run) allows you to run your .NET Core 3.1 app in a fully managed serverless environment.
To deploy to Cloud Run, use the button above, or the following steps:
* Build with `gcloud builds submit --tag gcr.io/[your-project]/dotnetcore31`
* Deploy with `gcloud run deploy --image gcr.io/[your-project]/dotnetcore31`Replacing `[your-project]` with your Google Cloud project ID.
## Running locally
* Build with `docker build -t dotnetcore31 .`
* Start with `docker run -p 8080:8080 dotnetcore31`
* Open in your browser at `http://localhost:8080`