How can i access my container on Docker-Desktop from other computer ?
028872c0210d web "docker-entrypoint.s…" x hours ago | Up x hours 0.0.0.0:4200->4200/tcp web
90bcf87bbf3b api "java -jar test.jar" x hours ago | Up x hours 0.0.0.0:2022->2022/tcp api
8b9d2f6c1340 db "docker-entrypoint.s…" x hours ago | Up x hours 0.0.0.0:5432->5432/tcp db
I can access my app on the browser (localhost:4200) on my local machine (A) but when i'm on another computer (B) i can't access my app on docker-desktop (A) from computer (B).
What i want want is to get access to the app hosted by the computer (A | 192.168.1.18) in Docker-desktop from the browser on computer (B | 192.168.1.19). When i type 192.168.1.18:4200, (or another port), i want to access to my web-app
How can i do that ? Thank you.