Skip to content

Instantly share code, notes, and snippets.

@yhsiang
Created February 12, 2015 09:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yhsiang/14b31f98125dc353ee0a to your computer and use it in GitHub Desktop.
Save yhsiang/14b31f98125dc353ee0a to your computer and use it in GitHub Desktop.
Kurento media server Docker
FROM ubuntu:14.04
MAINTAINER Yuanhsiang Cheng <lyforever62@hotmail.com>
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"]
@yhsiang
Copy link
Author

yhsiang commented Feb 12, 2015

docker run -p 8888:8888

@wildthink
Copy link

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.

@randallb
Copy link

randallb commented Jul 8, 2015

FWIW I have the same issue.

@charllie
Copy link

any news?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment