URGENT: Connecting Parse to an app (in Xcode) through Docker

Hello,

I am trying to connect a mobile app built in Xcode to Parse, via Docker. My Xcode storyline tells me there’s “no known class method for” the server entry. Although everything seems to be setup correctly and running on Docker
See picture:
https://framapic.org/NcRCdzjLy2sz/5wbxXAzNUmfR.png

Thank you

You have to expose the ports when running a docker. For example docker run -p 1337 --name=containername image. You can even map the port docker run -p 1337:1337 --name=containername image