Created
February 12, 2015 09:38
-
-
Save yhsiang/14b31f98125dc353ee0a to your computer and use it in GitHub Desktop.
Kurento media server Docker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:14.04 | |
MAINTAINER Yuanhsiang Cheng <[email protected]> | |
RUN apt-get install -y software-properties-common | |
RUN add-apt-repository ppa:kurento/kurento | |
RUN apt-get install -y wget | |
RUN wget -O - http://ubuntu.kurento.org/kurento.gpg.key | apt-key add - | |
RUN apt-get update | |
RUN apt-get install -y kurento-media-server | |
EXPOSE 8888 | |
ENTRYPOINT ["/usr/bin/kurento-media-server"] |
I'm getting this error when running this image on OS X using boot2docker
libdc1394 error: Failed to initialize libdc1394
This appears to be keeping the media-server from starting up.
Any pointers would be appreciated.
FWIW I have the same issue.
any news?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
docker run -p 8888:8888