https://github.com/redhat-developer/s2i-dotnetcore-ex
Example application for the OpenShift s2i-dotnetcore builder image
https://github.com/redhat-developer/s2i-dotnetcore-ex
Last synced: 7 months ago
JSON representation
Example application for the OpenShift s2i-dotnetcore builder image
- Host: GitHub
- URL: https://github.com/redhat-developer/s2i-dotnetcore-ex
- Owner: redhat-developer
- License: apache-2.0
- Created: 2016-05-10T17:44:13.000Z (over 9 years ago)
- Default Branch: dotnet-9.0
- Last Pushed: 2024-11-14T12:44:56.000Z (about 1 year ago)
- Last Synced: 2025-06-05T05:29:16.147Z (7 months ago)
- Language: HTML
- Homepage:
- Size: 3.5 MB
- Stars: 77
- Watchers: 11
- Forks: 474
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- Contributing: Contributing.adoc
- License: LICENSE
Awesome Lists containing this project
README
= .NET Core Sample App for OpenShift
This repository contains a simple MVC .NET Core application that can be deployed on OpenShift.
The example is meant to be built and run with the https://github.com/redhat-developer/s2i-dotnetcore[s2i-dotnetcore] builder
images. The branches of this repository correspond to versions of the s2i-dotnetcore images.
== Deploying the application
You can deploy the application using the OpenShift client (`oc`) with the following commands:
[source]
----
# Create a new OpenShift project
$ oc new-project mydemo
# Add the .NET Core application
$ oc new-app dotnet:9.0-ubi8~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnet-9.0 --context-dir app
# Make the .NET Core application accessible externally and show the url
$ oc expose service s2i-dotnetcore-ex
$ oc get route s2i-dotnetcore-ex
----
== Copyright and License
Copyright 2024 by Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this package except in compliance with the License (see the `LICENSE` file
included in this distribution). You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations under
the License.