An open API service indexing awesome lists of open source software.

https://github.com/anibulus/docker.net

Show an example of how to run a .Net Application in docker containers
https://github.com/anibulus/docker.net

Last synced: 5 months ago
JSON representation

Show an example of how to run a .Net Application in docker containers

Awesome Lists containing this project

README

          

# Docker.Net

Download sdk and aspnet images

https://learn.microsoft.com/es-es/dotnet/architecture/microservices/net-core-net-framework-containers/official-net-docker-images

https://github.com/dotnet/dotnet-docker

```cs
builder.WebHost.ConfigureKestrel(serverOption => {
serverOption.Listen(System.Net.IPAddress.Any, 8080);
});
```

```bash
docker compose up -d
```