forked from linuxserver/docker-deluge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
48 lines (42 loc) · 1.15 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
FROM ghcr.io/linuxserver/baseimage-ubuntu:bionic
# set version label
LABEL maintainer="edifus"
# environment variables
ARG DEBIAN_FRONTEND="noninteractive"
ENV PYTHON_EGG_CACHE="/config/plugins/.python-eggs"
ENV HOME="/config"
# install software (deluge 1.3.15)
RUN \
echo "**** add repositories ****" && \
apt-get update && \
apt-get install -y gnupg && \
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C5E6A5ED249AD24C && \
echo "deb http://ppa.launchpad.net/deluge-team/ppa/ubuntu bionic main" >> \
/etc/apt/sources.list.d/deluge.list && \
echo "deb-src http://ppa.launchpad.net/deluge-team/ppa/ubuntu bionic main" >> \
/etc/apt/sources.list.d/deluge.list && \
echo "**** install packages ****" && \
apt-get update && \
apt-get install -y \
deluged \
deluge-console \
deluge-web \
python-requests \
p7zip-full \
unrar \
unzip \
curl \
jq && \
echo "**** cleanup ****" && \
apt-get clean && \
rm -rf \
/tmp/* \
/var/lib/apt/lists/* \
/var/tmp/*
# add local files
COPY root/ /
# ports and volumes
EXPOSE 8112 58846 58946 58946/udp
VOLUME /config /downloads
# health check
HEALTHCHECK --start-period=10s CMD /usr/sbin/healthcheck-web