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
- Host: GitHub
- URL: https://github.com/anibulus/docker.net
- Owner: Anibulus
- Created: 2025-03-07T05:38:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-07T06:56:37.000Z (over 1 year ago)
- Last Synced: 2025-10-21T13:43:17.231Z (8 months ago)
- Language: Dockerfile
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```