From 80ce6d349fb66b5401635954422f653e1e3ecb41 Mon Sep 17 00:00:00 2001 From: <> Date: Mon, 8 Jul 2024 15:12:28 +0000 Subject: [PATCH] Deployed b17fdcb3 with MkDocs version: 1.6.0 --- images/docker-qbittorrent/index.html | 6 +- images/docker-series-troxide/index.html | 2 +- .../index.html | 2 +- search/search_index.json | 2 +- sitemap.xml | 524 +++++++++--------- sitemap.xml.gz | Bin 1989 -> 1990 bytes 6 files changed, 268 insertions(+), 268 deletions(-) diff --git a/images/docker-qbittorrent/index.html b/images/docker-qbittorrent/index.html index 68b6e0072c..540a3effad 100644 --- a/images/docker-qbittorrent/index.html +++ b/images/docker-qbittorrent/index.html @@ -11,7 +11,7 @@ - TORRENTING_PORT=6881 volumes: - /path/to/qbittorrent/appdata:/config - - /path/to/downloads:/downloads + - /path/to/downloads:/downloads #optional ports: - 8080:8080 - 6881:6881 @@ -28,7 +28,7 @@ -p 6881:6881 \ -p 6881:6881/udp \ -v /path/to/qbittorrent/appdata:/config \ - -v /path/to/downloads:/downloads \ + -v /path/to/downloads:/downloads `#optional` \ --restart unless-stopped \ lscr.io/linuxserver/qbittorrent:latest
Containers are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate <external>:<internal>
respectively. For example, -p 8080:80
would expose port 80
from inside the container to be accessible from the host's IP on port 8080
outside the container.
-p
)¶Parameter | Function |
---|---|
8080 | WebUI |
6881 | tcp connection port |
6881/udp | udp connection port |
-e
)¶Env | Function |
---|---|
PUID=1000 | for UserID - see below for explanation |
PGID=1000 | for GroupID - see below for explanation |
TZ=Etc/UTC | specify a timezone to use, see this list. |
WEBUI_PORT=8080 | for changing the port of the web UI, see below for explanation |
TORRENTING_PORT=6881 | for changing the port of tcp/udp connection, see below for explanation |
-v
)¶Volume | Function |
---|---|
/config | Contains all relevant configuration files. |
/downloads | Location of downloads on disk. |
Parameter | Function |
---|---|
You can set any environment variable from a file by using a special prepend FILE__
.
As an example:
-e FILE__MYVAR=/run/secrets/mysecretvariable
@@ -54,4 +54,4 @@
--pull \
-t lscr.io/linuxserver/qbittorrent:latest .
The ARM variants can be built on x86_64 hardware using multiarch/qemu-user-static
Once registered you can define the dockerfile to use with -f Dockerfile.aarch64
.
UMASK_SET
in favor of UMASK in baseimage, see above for more information.