0
I’m running an Ionic facility inside a Docker container. I released the necessary ports in the container, so much so that I can access the application by mobile from Ionic Devapp, just inform IP and port, however, Ionic Devapp can not automatically list the apps published on the network, is showing the message: Listening for apps on your network...
It seems to me that there is no communication problem with the container/app. It follows string use to build the container:
docker run -it -p 8100:8100 -p 35729:35729 -p 53703:53703 --name nome_do_container fabiojanio/ionic /bin/bash
I also tried using the parameter --net host
, but that didn’t solve.
Version of the software used:
- Node 8.12.0
- Ionic Devapp 1.0.2
- Ionic Framework 3.20.0
- Docker version 18.06.1-ce
- OS Macos Mojava 10.14
See if this tip helps with something: Add value
https://{localeIP}:8100
inallowedOrigins
-> Ionic Devapp Feedback Mega-thread– Pedro Gaspar
@Pedrogaspar Where is this allowedOrigins?
– Fábio Jânio
Actually I don’t know, I just found the information and passed it on to see if it was useful. But, searching now, it seems to go in some config file, apparently see these two links: Ionic 2 CORS Issue and Scala 403 Issue on Ionic.
– Pedro Gaspar