forked from tedkulp/docker-radarr-mp4-automator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
75 lines (63 loc) · 1.74 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
FROM linuxserver/radarr
RUN \
apt-get update && \
apt-get install -y \
ffmpeg \
git \
python-pip \
openssl \
python-dev \
libffi-dev \
libssl-dev \
libxml2-dev \
libxslt1-dev \
zlib1g-dev
RUN \
pip install --upgrade pip && \
hash -r pip && \
pip install requests && \
pip install requests[security] && \
pip install requests-cache && \
pip install babelfish && \
pip install 'guessit<2' && \
pip install 'subliminal<2' && \
pip install stevedore==1.19.1 && \
pip install python-dateutil && \
pip install qtfaststart && \
git clone git://github.com/mdhiggins/sickbeard_mp4_automator.git /sickbeard_mp4_automator/ && \
touch /sickbeard_mp4_automator/info.log && \
chmod a+rwx -R /sickbeard_mp4_automator && \
ln -s /downloads /data && \
ln -s /config_mp4_automator/autoProcess.ini /sickbeard_mp4_automator/autoProcess.ini && \
rm -rf \
/tmp/* \
/var/lib/apt/lists/* \
/var/tmp/*
<<<<<<< HEAD
<<<<<<< HEAD
# docker settings
#################
# map /config to host defined config path (used to store configuration from app)
VOLUME /config
# map /data to host defined data path (used to store data from app)
VOLUME /data
VOLUME /config_mp4_automator
# expose port for deluge webui
EXPOSE 8112
# expose port for privoxy
EXPOSE 8118
# expose port for deluge daemon (used in conjunction with LAN_NETWORK env var)
EXPOSE 58846
# expose port for deluge incoming port (used only if VPN_ENABLED=no)
EXPOSE 58946
EXPOSE 58946/udp
# set permissions
#################
# run script to set uid, gid and permissions
CMD ["/bin/bash", "/usr/local/bin/init.sh"]
=======
#VOLUME config_mp4_automator
>>>>>>> parent of a9b2241... Update Dockerfile
=======
VOLUME config_mp4_automator
>>>>>>> parent of 26ef175... Update Dockerfile