exceptionless/Exceptionless

Wrong Port allocation in self-hosting docker command

nikschen opened this issue · 4 comments

In docker command from docs:
docker run --rm -it -p 5000:80 exceptionless/exceptionless:latest
is a wrong port allocation, should be 5000:8080 or default port in image should be changed

Output from docker container when running:
[09:26:23 INF] Now listening on: http://[::]:8080 <Microsoft.Hosting.Lifetime>
No configuration changes made by me

Thanks @nikschen, this is due to the recent default port change on .NET docker containers. Would you be able to submit a quick PR to update the places you saw this?

Ah I see. Yeah, no Problem. I filed a pull request at the corresponding repository: Link

Thank you @nikschen!