forked from needo37/sickrage
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
47 lines (35 loc) · 1.27 KB
/
Dockerfile
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
FROM phusion/baseimage:0.9.11
MAINTAINER needo <[email protected]>
ENV DEBIAN_FRONTEND noninteractive
# Set correct environment variables
ENV HOME /root
# Use baseimage-docker's init system
CMD ["/sbin/my_init"]
# Fix a Debianism of the nobody's uid being 65534
RUN usermod -u 99 nobody
RUN usermod -g 100 nobody
RUN add-apt-repository "deb http://us.archive.ubuntu.com/ubuntu/ trusty universe multiverse"
RUN add-apt-repository "deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates universe multiverse"
RUN apt-get update -q
# Install Dependencies
RUN apt-get install -qy python python-cheetah ca-certificates wget unrar
# Install SickRage 0.2.1 (2014-10-22)
RUN mkdir /opt/sickrage
RUN wget https://github.com/SICKRAGETV/SickRage/archive/master.tar.gz -O /tmp/master.tar.gz
RUN tar -C /opt/sickrage -xvf /tmp/master.tar.gz --strip-components 1
RUN chown nobody:users /opt/sickrage
EXPOSE 8081
# SickRage Configuration
VOLUME /config
# Downloads directory
VOLUME /downloads
# TV directory
VOLUME /tv
# Add edge.sh to execute during container startup
RUN mkdir -p /etc/my_init.d
ADD edge.sh /etc/my_init.d/edge.sh
RUN chmod +x /etc/my_init.d/edge.sh
# Add SickRage to runit
RUN mkdir /etc/service/sickrage
ADD sickrage.sh /etc/service/sickrage/run
RUN chmod +x /etc/service/sickrage/run