Servicii pe docker cu diverse aplicatii: python, node, php, .net

This commit is contained in:
2025-12-12 09:00:05 +00:00
parent 498b01ddd1
commit 3525523167
41 changed files with 468 additions and 9 deletions

View File

@@ -0,0 +1,10 @@
var builder = WebApplication.CreateBuilder(args);
// ascultă pe 0.0.0.0:8085
builder.WebHost.UseUrls("http://0.0.0.0:8085");
var app = builder.Build();
app.MapGet("/", () => "Salut! .NET rulează pe 8085. fisier updatat");
app.Run();