diff --git a/lsio/qbittorrent/docker-compose.yaml b/lsio/qbittorrent/docker-compose.yaml index 02af426..25b1b6e 100644 --- a/lsio/qbittorrent/docker-compose.yaml +++ b/lsio/qbittorrent/docker-compose.yaml @@ -15,7 +15,7 @@ services: - PGID=${PGID:-100} # specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). - TZ=${TZ:-Europe/Amsterdam} - # for changing the port of the webui, see below for explanation + # for changing the port of the web UI, see below for explanation - WEBUI_PORT=8080 volumes: # Contains all relevant configuration files. diff --git a/lsio/qbittorrent/docker-run.sh b/lsio/qbittorrent/docker-run.sh index 147c73d..7d14aaf 100644 --- a/lsio/qbittorrent/docker-run.sh +++ b/lsio/qbittorrent/docker-run.sh @@ -8,7 +8,7 @@ docker run -d \ -e PUID=${PUID:-1024} `# for UserID` \ -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 webui, see below for explanation` \ + -e WEBUI_PORT=8080 `# for changing the port of the web UI, see below for explanation` \ -p 8080:8080 `# WebUI` \ -p 6881:6881 `# tcp connection port` \ -p 6881:6881/udp `# udp connection port` \