Skip to content

Files

Latest commit

85c275a · Jan 16, 2025

History

History

samples

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Sep 24, 2024
Dec 10, 2024
Oct 1, 2024
Dec 10, 2024
Sep 24, 2024
Dec 4, 2024
Jan 16, 2025
Jan 16, 2025
May 5, 2020
Jan 14, 2020
Oct 2, 2024
Sep 16, 2024
Sep 30, 2024
Aug 9, 2024
Aug 9, 2024
Nov 10, 2020
Jan 7, 2025
Aug 9, 2024
Oct 2, 2024
Jan 7, 2025
Aug 12, 2024
Oct 1, 2024
Dec 12, 2024

.NET container samples

The following samples and guidance demonstrate how to use .NET and Docker for development, testing and production. You can use the samples for learning about containers or as the basis of your own container images.

Kubernetes samples are provided in the kubernetes directory.

Building images

Development guidance

Hosting guidance

Other documentation

Try pre-built images

The following commands will run a .NET console app in a container:

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

The following command will run an ASP.NET Core console app in a container that you can access in your web browser at http://localhost:8000.

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

Docker Repositories