Go to file
wenchao f1631a126c
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/pull_request_closed/build Pipeline was successful
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/pr/manifest Pipeline was successful
ci/woodpecker/pr/deploy Pipeline was successful
ci(when): add when
2024-07-04 17:34:53 +08:00
.config add dotnet-docker 2023-05-18 17:14:23 +08:00
.github/ISSUE_TEMPLATE add dotnet-docker 2023-05-18 17:14:23 +08:00
.mar/portal add dotnet-docker 2023-05-18 17:14:23 +08:00
.woodpecker ci(when): add when 2024-07-04 17:34:53 +08:00
documentation add dotnet-docker 2023-05-18 17:14:23 +08:00
eng add dotnet-docker 2023-05-18 17:14:23 +08:00
k8s show edit 2023-10-20 02:08:55 +00:00
samples show edit 2023-10-17 17:38:15 +08:00
src add dotnet-docker 2023-05-18 17:14:23 +08:00
tests add dotnet-docker 2023-05-18 17:14:23 +08:00
.dockerignore add dotnet-docker 2023-05-18 17:14:23 +08:00
.editorconfig add dotnet-docker 2023-05-18 17:14:23 +08:00
.gitattributes add dotnet-docker 2023-05-18 17:14:23 +08:00
.gitignore test pipeline 2023-05-30 16:22:43 +08:00
build-and-test.ps1 add dotnet-docker 2023-05-18 17:14:23 +08:00
CODE-OF-CONDUCT.md add dotnet-docker 2023-05-18 17:14:23 +08:00
CODEOWNERS add dotnet-docker 2023-05-18 17:14:23 +08:00
CONTRIBUTING.md add dotnet-docker 2023-05-18 17:14:23 +08:00
LICENSE add dotnet-docker 2023-05-18 17:14:23 +08:00
manifest.json add dotnet-docker 2023-05-18 17:14:23 +08:00
manifest.samples.json add dotnet-docker 2023-05-18 17:14:23 +08:00
manifest.versions.json add dotnet-docker 2023-05-18 17:14:23 +08:00
NuGet.config add dotnet-docker 2023-05-18 17:14:23 +08:00
README.aspnet.md add dotnet-docker 2023-05-18 17:14:23 +08:00
README.md add dotnet-docker 2023-05-18 17:14:23 +08:00
README.monitor.md add dotnet-docker 2023-05-18 17:14:23 +08:00
README.runtime-deps.md add dotnet-docker 2023-05-18 17:14:23 +08:00
README.runtime.md add dotnet-docker 2023-05-18 17:14:23 +08:00
README.samples.md add dotnet-docker 2023-05-18 17:14:23 +08:00
README.sdk.md add dotnet-docker 2023-05-18 17:14:23 +08:00
SECURITY.md add dotnet-docker 2023-05-18 17:14:23 +08:00

Featured Repos

About

.NET is a general purpose development platform maintained by Microsoft and the .NET community on GitHub. It is cross-platform, supports Windows, macOS, and Linux, and can be used in device, cloud, and embedded/IoT scenarios.

.NET has several capabilities that make development productive, including automatic memory management, (runtime) generic types, reflection, asynchronous constructs, concurrency, and native interop. Millions of developers take advantage of these capabilities to efficiently build high-quality applications.

You can use C# or F# to write .NET apps.

  • C# is powerful, type-safe, and object-oriented while retaining the expressiveness and elegance of C-style languages. Anyone familiar with C and similar languages will find it straightforward to write in C#.
  • F# is a cross-platform, open-source, functional programming language for .NET. It also includes object-oriented and imperative programming.

.NET is open source (MIT and Apache 2 licenses) and was contributed to the .NET Foundation by Microsoft in 2014. It can be freely adopted by individuals and companies, including for personal, academic or commercial purposes. Multiple companies use .NET as part of apps, tools, new platforms and hosting services.

You are invited to contribute new features, fixes, or updates, large or small; we are always thrilled to receive pull requests, and do our best to process them as fast as we can.

https://docs.microsoft.com/dotnet/core/

Watch discussions for Docker-related .NET announcements.

Usage

The .NET Docker samples show various ways to use .NET and Docker together. See Building Docker Images for .NET Applications to learn more.

Container sample: Run a simple application

Enter the following command to run a console app in a container with a pre-built .NET Docker image:

docker run --rm mcr.microsoft.com/dotnet/samples

Container sample: Run a web app

Enter the following command to run a console app in a container with a pre-built .NET Docker image:

docker run -it --rm -p 8000:80 --name aspnetcore_sample mcr.microsoft.com/dotnet/samples:aspnetapp

When the app starts, navigate to http://localhost:8000 in a browser.

See Hosting ASP.NET Core Images with Docker over HTTPS to use HTTPS with this image.

Related Repositories

.NET:

.NET Framework:

Support

Lifecycle

Image Update Policy

  • We update the supported .NET images within 12 hours of any updates to their base images (e.g. debian:buster-slim, windows/nanoserver:ltsc2022, buildpack-deps:bionic-scm, etc.).
  • We publish .NET images as part of releasing new versions of .NET including major/minor and servicing.

Feedback

License