I want to run this kurento example: https://doc-kurento.readthedocs.io/en/stable/tutorials/java/tutorial-one2one.html
But I have some issues with application server when I building it on docker.
When I run kms docker - it run's successfully and app server runs as well. I setted port of kurento-media-server as 8889:8888 and IP in docker container when I checked was 172.17.0.2. Also, I setted port of web app as 8081:8080.
When i tried to open a web-page - it was not responded.
My url was: https://192.168.0.2:8443, where 192.168.0.2 is IP of my server where I run docker. Also I tried to connect to docker container IP directly with https://172.17.0.3:8443.
My docker coomands:
1) kms comand - docker run -d --name kms -p 8889:8888 kms
2) application server comand - docker run -d --name apps -p 8081:8080 --link kms apps
What mistakes I have made here? May'be I need to change IP in ENTRYPOINT?
I spend more than than 2 weeks and i still didnt find solution.
--
You received this message because you are subscribed to the Google Groups "kurento" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kurento+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kurento/b073d36e-088d-4902-be87-350b702c82a5%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to kur...@googlegroups.com.
docker run --network=host -t --name apps -p 8080:8080 apps