Tag: dockerfile kurento

如何访问Docker容器中运行的kurento媒体服务器

我需要在Docker容器中configurationkurento媒体服务器。 我可以在我的Ubuntu机器上configurationkurento媒体服务器,并可以根据需要执行本教程。 链接如下: Kurento媒体服务器安装: http://doc-kurento.readthedocs.io/en/stable/installation_guide.html Kurento一对一来电教程: http://doc-kurento.readthedocs.io/en/stable/tutorials/node/tutorial-one2one.html 现在我需要在Docker容器中设置相同的内容。 我创build了一个定制的Docker镜像(参考链接: https : //docs.docker.com/engine/tutorials/dockerimages/ ) 使用之前的过程,我已经创build了dockerfile Dockerfile内容: FROM ubuntu:14.04 MAINTAINER USER1 "USER1@infinte.com" RUN apt-get update RUN apt-get install wget -y RUN apt-get install git -y RUN apt-get install curl -y RUN echo "deb http://ubuntu.kurento.org trusty kms6" | sudo tee /etc/apt/sources.list.d/kurento.list RUN wget -O – http://ubuntu.kurento.org/kurento.gpg.key | sudo […]