I'm trying to access the emulator container via adb using another container but can't find a way to connect, no devices are available.
The only way it works is using "--network host" and connecting using adb from the host.
If I try to use a bridge network and try to access the emulator from anther container, I get connection refused: even publishing the ports like "-p 5555:5555" and "-p 5554:5554" and trying from the host I can't connect.
I tried "adb connect ip-addr:555x" but still nothing.
How can I solve this ?
Should I publish more ports to try from localhost ?