forked from needo37/couchpotato
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
executable file
·44 lines (34 loc) · 1.14 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
FROM phusion/baseimage:0.9.15
MAINTAINER needo <[email protected]>
#########################################
## ENVIRONMENTAL CONFIG ##
#########################################
# Set correct environment variables
ENV DEBIAN_FRONTEND noninteractive
ENV HOME /root
ENV LC_ALL C.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
# Use baseimage-docker's init system
CMD ["/sbin/my_init"]
#########################################
## FILES, SERVICES AND CONFIGURATION ##
#########################################
# Add services to runit
ADD couchpotato.sh /etc/service/couchpotato/run
ADD edge.sh /etc/my_init.d/edge.sh
RUN chmod +x /etc/service/*/run /etc/my_init.d/*
#########################################
## EXPORTS AND VOLUMES ##
#########################################
VOLUME /config
VOLUME /film
VOLUME /film2
VOLUME /film3d
VOLUME /download
EXPOSE 5050
#########################################
## RUN INSTALL SCRIPT ##
#########################################
ADD install.sh /tmp/
RUN chmod +x /tmp/install.sh && /tmp/install.sh && rm /tmp/install.sh