-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathDockerfile
More file actions
26 lines (17 loc) · 747 Bytes
/
Dockerfile
File metadata and controls
26 lines (17 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
FROM angelrr7702/ubuntu-13.10-sshd
#Thanks to https://github.com/bydavy/docker-plex/blob/master/Dockerfile and https://github.com/aostanin/docker-plex/blob/master/Dockerfile
MAINTAINER Tim Haak <tim@haak.co.uk>
RUN apt-get -q update
RUN apt-get -qy --force-yes dist-upgrade
#ENV LANG en_US.UTF-8
RUN apt-get install -qy --force-yes curl
RUN echo "deb http://shell.ninthgate.se/packages/debian squeeze main" > /etc/apt/sources.list.d/plexmediaserver.list
RUN curl http://shell.ninthgate.se/packages/shell-ninthgate-se-keyring.key | apt-key add -
RUN apt-get -q update
RUN apt-get install -qy --force-yes plexmediaserver
VOLUME /config
VOLUME /data
ADD ./start.sh /start.sh
RUN chmod u+x /start.sh
EXPOSE 32400 22
ENTRYPOINT ["/start.sh"]