https://github.com/boeegh/dotnet-runx
.NET Framework 6-8 runtime containers with a few tweaks
https://github.com/boeegh/dotnet-runx
asp-net-core aspnet-core docker dotnet dotnet-framework framework6 framework7 net-6 net-7 net-core
Last synced: 4 months ago
JSON representation
.NET Framework 6-8 runtime containers with a few tweaks
- Host: GitHub
- URL: https://github.com/boeegh/dotnet-runx
- Owner: boeegh
- License: mit
- Created: 2023-03-02T20:47:47.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-04T18:28:18.000Z (almost 3 years ago)
- Last Synced: 2025-07-06T18:12:48.759Z (7 months ago)
- Topics: asp-net-core, aspnet-core, docker, dotnet, dotnet-framework, framework6, framework7, net-6, net-7, net-core
- Language: Shell
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dotnet-runx
.NET Framework runtime container with a few tweaks:
* Uses [dumb-init](https://github.com/Yelp/dumb-init) to ensure proper signalling
* Automatically attempts to find and start proper dll
* Run as `dotnet` (uid/gid: 1737) user/group
Note: It's assumed that the application is [framework-dependent](https://learn.microsoft.com/en-us/dotnet/core/deploying/), and so is _not_ built as a self-contained deployment.
## Usage
```powershell
# run the web app in the current directory (browse using http://localhost:8123)
docker run -p 8123:80 --rm -v ${PWD}:/app boeegh/dotnet-runx:7.0
# run the .net app in the current directory
docker run --rm -v ${PWD}:/app boeegh/dotnet-runx:7.0
# manually specify the dll to run (the default .NET image behaviour)
docker run -v ${PWD}:/app boeegh/dotnet-runx:7.0 dotnet ./MyApp.dll
```
_Please note this is an experimental image that may... explode at any time. Use with caution. Or not at all._