I understand that Event Store is only accessible through the localhost adapter and is not exposed publicly but I am wondering if there is a way to allow accessing WebUI from an instance deployed inside inside docker? And if so, what settings do I need to enable that?
Hi @naitcc,
You can access the Web UI on a docker instance of event store.
What you need to do is expose the external event store ports (2113 HTTP, 1113 TCP) in your docker command run command.
So for example -p 2113:2113 to keep the port the same or -p 2113 to get a random port assigned.
Hope this helps,
Stuart
I have these ports open but this works locally but not when I have it deployed on Azure.