add linuxserver-deluge

This commit is contained in:
Peter Cai 2022-10-15 18:59:48 -04:00
parent 8bb78bfd3a
commit c1e28c763e
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
FROM linuxserver/deluge:2.1.1
# Add setcap permission to Python binary (so that it can run deluge on port 80)
RUN apk add --no-cache libcap-utils \
&& setcap cap_net_bind_service=+ep $(realpath /usr/bin/python3)