Skip to content

Instantly share code, notes, and snippets.

@yhsiang
Created February 12, 2015 09:38
Show Gist options
  • Select an option

  • Save yhsiang/14b31f98125dc353ee0a to your computer and use it in GitHub Desktop.

Select an option

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"]
@wildthink

Copy link
Copy Markdown

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

randallb commented Jul 8, 2015

Copy link
Copy Markdown

FWIW I have the same issue.

@charllie

Copy link
Copy Markdown

any news?

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