From ea8c88f133409b06b05c255483009ed9f74fcf7a Mon Sep 17 00:00:00 2001 From: Douwe Ravers Date: Fri, 24 Apr 2026 12:34:29 +0200 Subject: [PATCH] changed port to 5000 --- Dockerfile | 4 ++-- docker-compose.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 68f393f..ecd65cc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/docker-compose.yml b/docker-compose.yml index 192d3bc..017302a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,5 +6,5 @@ services: context: . dockerfile: Dockerfile ports: - - "8080:8080" + - "5000:5000" restart: unless-stopped