Skip to content

Commit

Permalink
add user/password support, run deluge as separate user
Browse files Browse the repository at this point in the history
  • Loading branch information
gmega committed Nov 1, 2024
1 parent 398cde6 commit 090b77c
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions docker/deluge.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,26 @@
# It's easier to use miniconda or we'll have to build python-boost manually.
FROM continuumio/miniconda3:24.9.2-0

ARG UID=1000
ARG GID=1000

ENV DELUGE_APP=/opt/deluge
ENV DELUGE_CONFIG_DIR=/var/lib/deluge
ENV DELUGE_DOWNLOAD_DIR=/var/lib/deluge/downloads
ENV DELUGE_TORRENTFILE_DIR=/var/lib/deluge/downloads
ENV DELUGE_PLUGINS_DIR=/var/lib/deluge/plugins
ENV DELUGE_DOWNLOAD_DIR=${DELUGE_CONFIG_DIR}/downloads
ENV DELUGE_TORRENTFILE_DIR=${DELUGE_CONFIG_DIR}/downloads
ENV DELUGE_PLUGINS_DIR=${DELUGE_CONFIG_DIR}/plugins

ENV DELUGE_RPC_PORT=6890
ENV DELUGE_LISTEN_PORTS=6891,6892
ENV DELUGE_DAEMON_USERNAME=user
ENV DELUGE_DAEMON_PASSWORD=password

Check warning on line 16 in docker/deluge.Dockerfile

View workflow job for this annotation

GitHub Actions / docker

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "DELUGE_DAEMON_PASSWORD") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

RUN mkdir -p ${DELUGE_APP}
RUN mkdir -p ${DELUGE_APP} ${DELUGE_CONFIG_DIR}
RUN groupadd -g ${GID} deluge_user \
&& useradd -u ${UID} -g ${GID} -s /bin/bash -m deluge_user \
&& chown -R deluge_user:deluge_user /var/lib/deluge /opt/deluge

USER deluge_user
WORKDIR ${DELUGE_APP}

# SHELL modifies the shell form to a login shell so we
Expand All @@ -27,7 +38,8 @@ RUN conda install -y anaconda::py-boost\
anaconda::gxx_linux-64\
anaconda:openssl

COPY . ./
COPY --chown=deluge_user:deluge_user . ./

RUN git submodule update --init --recursive &&\
cd vendor/libtorrent/bindings/python &&\
python setup.py build_ext install
Expand Down

0 comments on commit 090b77c

Please sign in to comment.