Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meteatamel/cloudrun-dotnet-6
.NET 6 on Google Cloud Run
https://github.com/meteatamel/cloudrun-dotnet-6
Last synced: 2 days ago
JSON representation
.NET 6 on Google Cloud Run
- Host: GitHub
- URL: https://github.com/meteatamel/cloudrun-dotnet-6
- Owner: meteatamel
- License: apache-2.0
- Created: 2022-01-18T11:15:22.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-04T10:08:57.000Z (almost 3 years ago)
- Last Synced: 2024-12-27T05:41:56.026Z (7 days ago)
- Language: C#
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# .NET 6 on Google Cloud Run
[![Run on Google Cloud](https://deploy.cloud.run/button.svg)](https://deploy.cloud.run)
.NET 6 was [released](https://devblogs.microsoft.com/dotnet/announcing-net-6/) on November 8, 2021 and is a LTS release, supported for three years.
## Deploy to Cloud Run
[Cloud Run](https://cloud.run) allows you to run your .NET app in a fully managed serverless environment.
To deploy to Cloud Run, use the button above, or the following steps:
* Build and deploy with `gcloud builds submit --source .`
## Running locally
* Build with `docker build -t dotnet6 .`
* Start with `docker run -p 8080:8080 dotnet6`
* Open in your browser at `http://localhost:8080`