changed port to 5000

This commit is contained in:
2026-04-24 12:34:29 +02:00
parent 295e60502c
commit ea8c88f133
2 changed files with 3 additions and 3 deletions

View File

@@ -29,6 +29,6 @@ RUN dotnet restore
# RUN dotnet publish -c Release -o /app/publish
# Runtime stage: Use the SDK image to run the app
ENTRYPOINT ["dotnet", "run", "--no-launch-profile", "--urls", "http://0.0.0.0:8080"]
EXPOSE 8080
ENTRYPOINT ["dotnet", "run", "--no-launch-profile", "--urls", "http://0.0.0.0:5000"]
EXPOSE 5000

View File

@@ -6,5 +6,5 @@ services:
context: .
dockerfile: Dockerfile
ports:
- "8080:8080"
- "5000:5000"
restart: unless-stopped