diff --git a/Dockerfile b/Dockerfile index 25e536e..9dbfbf2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,8 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base USER app WORKDIR /app -EXPOSE 80 -EXPOSE 443 +EXPOSE 8080 +EXPOSE 8081 # This stage is used to build the service project diff --git a/Properties/launchSettings.json b/Properties/launchSettings.json index 171533f..4db5e01 100644 --- a/Properties/launchSettings.json +++ b/Properties/launchSettings.json @@ -30,8 +30,8 @@ "launchBrowser": true, "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}", "environmentVariables": { - "ASPNETCORE_HTTPS_PORTS": "443", - "ASPNETCORE_HTTP_PORTS": "80" + "ASPNETCORE_HTTPS_PORTS": "8081", + "ASPNETCORE_HTTP_PORTS": "8080" }, "publishAllPorts": true, "useSSL": true