From a9acc7977045f8024008202c91c3ae59d468e4eb Mon Sep 17 00:00:00 2001 From: technorabilia Date: Thu, 15 Feb 2024 01:16:18 +0000 Subject: [PATCH] Workflow update --- lsio/qbittorrent/docker-compose.yaml | 2 ++ lsio/qbittorrent/docker-run.sh | 1 + 2 files changed, 3 insertions(+) diff --git a/lsio/qbittorrent/docker-compose.yaml b/lsio/qbittorrent/docker-compose.yaml index 25b1b6e..91fdc65 100644 --- a/lsio/qbittorrent/docker-compose.yaml +++ b/lsio/qbittorrent/docker-compose.yaml @@ -17,6 +17,8 @@ services: - TZ=${TZ:-Europe/Amsterdam} # for changing the port of the web UI, see below for explanation - WEBUI_PORT=8080 + # for changing the port of tcp/udp connection, see below for explanation + - TORRENTING_PORT=6881 volumes: # Contains all relevant configuration files. - ${BASEDIR:-/volume1/docker}/qbittorrent/config:/config diff --git a/lsio/qbittorrent/docker-run.sh b/lsio/qbittorrent/docker-run.sh index 7d14aaf..a282e8a 100644 --- a/lsio/qbittorrent/docker-run.sh +++ b/lsio/qbittorrent/docker-run.sh @@ -9,6 +9,7 @@ docker run -d \ -e PGID=${PGID:-100} `# for GroupID` \ -e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \ -e WEBUI_PORT=8080 `# for changing the port of the web UI, see below for explanation` \ + -e TORRENTING_PORT=6881 `# for changing the port of tcp/udp connection, see below for explanation` \ -p 8080:8080 `# WebUI` \ -p 6881:6881 `# tcp connection port` \ -p 6881:6881/udp `# udp connection port` \