forked from sameersbn/docker-rygel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
22 lines (17 loc) · 655 Bytes
/
Dockerfile
File metadata and controls
22 lines (17 loc) · 655 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM sameersbn/ubuntu:14.04.20150120
MAINTAINER sameer@damagehead.com
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv B84401E3 \
&& echo "deb http://ppa.launchpad.net/yg-jensge/gupnp/ubuntu trusty main" >> /etc/apt/sources.list \
&& apt-get update \
&& apt-get install -y rygel tumbler gstreamer1.0-plugins-base \
gstreamer1.0-plugins-good gstreamer1.0-plugins-bad \
gstreamer1.0-plugins-ugly gstreamer1.0-libav \
&& rm -rf /var/lib/apt/lists/* # 20140918
ADD rygel.conf /root/.config/
EXPOSE 8000
EXPOSE 1900/udp
VOLUME ["/root/.cache/rygel"]
VOLUME ["/videos"]
VOLUME ["/music"]
VOLUME ["/pictures"]
CMD ["/usr/bin/rygel" ]