allow deluge log level to be controlled

This commit is contained in:
gmega 2024-12-05 08:53:45 -03:00
parent 090b77c5af
commit 5c23c9dec2
No known key found for this signature in database
GPG Key ID: 6290D34EAD824B18
2 changed files with 2 additions and 1 deletions

View File

@ -10,4 +10,4 @@ fi
cd "${DELUGE_APP}"
python ./docker/bin/create_config.py
python -m deluge.core.daemon_entry -c "${DELUGE_CONFIG_DIR}" -d -L debug
python -m deluge.core.daemon_entry -c "${DELUGE_CONFIG_DIR}" -d -L "${DELUGE_LOG_LEVEL}"

View File

@ -14,6 +14,7 @@ ENV DELUGE_RPC_PORT=6890
ENV DELUGE_LISTEN_PORTS=6891,6892
ENV DELUGE_DAEMON_USERNAME=user
ENV DELUGE_DAEMON_PASSWORD=password
ENV DELUGE_LOG_LEVEL=debug
RUN mkdir -p ${DELUGE_APP} ${DELUGE_CONFIG_DIR}
RUN groupadd -g ${GID} deluge_user \