Hi!
I've dockerized my Medusa backend, nothing really complicated, just a network between the storefront and the backend, and ports exposure. I've set the entrypoint of the backend container to be medusa develop -H 0.0.0.0, so that it could be reached from the network but also from the host.
In fact, when i curl the container from the network it works just fine, but when i do it from the outside (like the terminal of my computer) it says "Recv failure: Connection reset by peer".
By googling, i noticed that this error is related to Medusa listening only to the localhost host, and so i think that the flag -H is not properly working (at least in my case).
Do someone know something more than I do? It would be really helpful. Thanks!