Compare commits
8 Commits
5.0.0-r2-l
...
5.0.2-r0-l
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
803acb713c | ||
|
|
c2134670e6 | ||
|
|
4cb4668b2d | ||
|
|
84a6c72d65 | ||
|
|
56b84f7735 | ||
|
|
4535a9f1d8 | ||
|
|
e10e37f0a7 | ||
|
|
30ccc1c2a0 |
4
.github/CONTRIBUTING.md
vendored
4
.github/CONTRIBUTING.md
vendored
@@ -105,10 +105,10 @@ docker build \
|
|||||||
-t linuxserver/qbittorrent:latest .
|
-t linuxserver/qbittorrent:latest .
|
||||||
```
|
```
|
||||||
|
|
||||||
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
|
The ARM variants can be built on x86_64 hardware and vice versa using `lscr.io/linuxserver/qemu-static`
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker run --rm --privileged multiarch/qemu-user-static:register --reset
|
docker run --rm --privileged lscr.io/linuxserver/qemu-static --reset
|
||||||
```
|
```
|
||||||
|
|
||||||
Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`.
|
Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`.
|
||||||
|
|||||||
@@ -70,13 +70,14 @@ jobs:
|
|||||||
if [[ -n "${triggered_branches}" ]] || [[ -n "${skipped_branches}" ]]; then
|
if [[ -n "${triggered_branches}" ]] || [[ -n "${skipped_branches}" ]]; then
|
||||||
if [[ -n "${triggered_branches}" ]]; then
|
if [[ -n "${triggered_branches}" ]]; then
|
||||||
NOTIFY_BRANCHES="**Triggered:** ${triggered_branches} \n"
|
NOTIFY_BRANCHES="**Triggered:** ${triggered_branches} \n"
|
||||||
|
NOTIFY_BUILD_URL="**Build URL:** https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-qbittorrent/activity/ \n"
|
||||||
|
echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****"
|
||||||
fi
|
fi
|
||||||
if [[ -n "${skipped_branches}" ]]; then
|
if [[ -n "${skipped_branches}" ]]; then
|
||||||
NOTIFY_BRANCHES="${NOTIFY_BRANCHES}**Skipped:** ${skipped_branches} \n"
|
NOTIFY_BRANCHES="${NOTIFY_BRANCHES}**Skipped:** ${skipped_branches} \n"
|
||||||
fi
|
fi
|
||||||
echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****"
|
|
||||||
echo "**** Notifying Discord ****"
|
echo "**** Notifying Discord ****"
|
||||||
curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903,
|
curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903,
|
||||||
"description": "**Package Check Build(s) Triggered for qbittorrent** \n'"${NOTIFY_BRANCHES}"'**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-qbittorrent/activity/"' \n"}],
|
"description": "**Package Check Build(s) for qbittorrent** \n'"${NOTIFY_BRANCHES}"''"${NOTIFY_BUILD_URL}"'"}],
|
||||||
"username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }}
|
"username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }}
|
||||||
fi
|
fi
|
||||||
|
|||||||
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
@@ -888,7 +888,7 @@ pipeline {
|
|||||||
echo '{"tag_name":"'${META_TAG}'",\
|
echo '{"tag_name":"'${META_TAG}'",\
|
||||||
"target_commitish": "master",\
|
"target_commitish": "master",\
|
||||||
"name": "'${META_TAG}'",\
|
"name": "'${META_TAG}'",\
|
||||||
"body": "**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n\\n**Repo Changes:**\\n\\n' > start
|
"body": "**CI Report:**\\n\\n'${CI_URL:-N/A}'\\n\\n**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n\\n**Repo Changes:**\\n\\n' > start
|
||||||
printf '","draft": false,"prerelease": false}' >> releasebody.json
|
printf '","draft": false,"prerelease": false}' >> releasebody.json
|
||||||
paste -d'\\0' start releasebody.json > releasebody.json.done
|
paste -d'\\0' start releasebody.json > releasebody.json.done
|
||||||
curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done'''
|
curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done'''
|
||||||
|
|||||||
@@ -86,6 +86,7 @@ A bittorrent client can be an active or a passive node. Running your client as a
|
|||||||
|
|
||||||
Similarly to the WEBUI_PORT, to set the port to 6887 you need to pass -p 6887:6887, -p 6887:6887/udp and -e TORRENTING_PORT=6887 arguments to Docker.
|
Similarly to the WEBUI_PORT, to set the port to 6887 you need to pass -p 6887:6887, -p 6887:6887/udp and -e TORRENTING_PORT=6887 arguments to Docker.
|
||||||
|
|
||||||
|
|
||||||
## Read-Only Operation
|
## Read-Only Operation
|
||||||
|
|
||||||
This image can be run with a read-only container filesystem. For details please [read the docs](https://docs.linuxserver.io/misc/read-only/).
|
This image can be run with a read-only container filesystem. For details please [read the docs](https://docs.linuxserver.io/misc/read-only/).
|
||||||
@@ -307,10 +308,10 @@ docker build \
|
|||||||
-t lscr.io/linuxserver/qbittorrent:latest .
|
-t lscr.io/linuxserver/qbittorrent:latest .
|
||||||
```
|
```
|
||||||
|
|
||||||
The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static`
|
The ARM variants can be built on x86_64 hardware and vice versa using `lscr.io/linuxserver/qemu-static`
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker run --rm --privileged multiarch/qemu-user-static:register --reset
|
docker run --rm --privileged lscr.io/linuxserver/qemu-static --reset
|
||||||
```
|
```
|
||||||
|
|
||||||
Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`.
|
Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`.
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
NAME VERSION TYPE
|
NAME VERSION TYPE
|
||||||
7zip 23.01-r0 apk
|
7zip 24.08-r0 apk
|
||||||
Alba.CsConsoleFormat 1.0.0.89 dotnet
|
Alba.CsConsoleFormat 1.0.0.89 dotnet
|
||||||
BencodeNET 2.3.0.0 dotnet
|
BencodeNET 2.3.0.0 dotnet
|
||||||
Bouncy Castle for .NET (netstandard2.0) 1.8.8.2 dotnet
|
Bouncy Castle for .NET (netstandard2.0) 1.8.8.2 dotnet
|
||||||
@@ -178,20 +178,20 @@ acl-libs 2.3.2-r1
|
|||||||
alpine-baselayout 3.6.8-r0 apk
|
alpine-baselayout 3.6.8-r0 apk
|
||||||
alpine-baselayout-data 3.6.8-r0 apk
|
alpine-baselayout-data 3.6.8-r0 apk
|
||||||
alpine-keys 2.5-r0 apk
|
alpine-keys 2.5-r0 apk
|
||||||
apk-tools 2.14.4-r3 apk
|
apk-tools 2.14.4-r4 apk
|
||||||
bash 5.2.37-r0 apk
|
bash 5.2.37-r0 apk
|
||||||
brotli-libs 1.1.0-r2 apk
|
brotli-libs 1.1.0-r2 apk
|
||||||
busybox 1.36.1-r32 apk
|
busybox 1.37.0-r7 apk
|
||||||
busybox-binsh 1.36.1-r32 apk
|
busybox-binsh 1.37.0-r7 apk
|
||||||
c-ares 1.34.2-r0 apk
|
c-ares 1.34.3-r0 apk
|
||||||
ca-certificates 20240705-r0 apk
|
ca-certificates 20240705-r0 apk
|
||||||
ca-certificates-bundle 20240705-r0 apk
|
ca-certificates-bundle 20241010-r0 apk
|
||||||
catatonit 0.2.0-r0 apk
|
catatonit 0.2.0-r0 apk
|
||||||
coreutils 9.5-r1 apk
|
coreutils 9.5-r1 apk
|
||||||
coreutils-env 9.5-r1 apk
|
coreutils-env 9.5-r1 apk
|
||||||
coreutils-fmt 9.5-r1 apk
|
coreutils-fmt 9.5-r1 apk
|
||||||
coreutils-sha512sum 9.5-r1 apk
|
coreutils-sha512sum 9.5-r1 apk
|
||||||
curl 8.9.1-r2 apk
|
curl 8.11.0-r2 apk
|
||||||
dbus-libs 1.14.10-r4 apk
|
dbus-libs 1.14.10-r4 apk
|
||||||
double-conversion 3.3.0-r0 apk
|
double-conversion 3.3.0-r0 apk
|
||||||
duktape 2.7.0-r1 apk
|
duktape 2.7.0-r1 apk
|
||||||
@@ -204,39 +204,39 @@ icu-libs 74.2-r0
|
|||||||
jq 1.7.1-r0 apk
|
jq 1.7.1-r0 apk
|
||||||
libattr 2.5.2-r2 apk
|
libattr 2.5.2-r2 apk
|
||||||
libb2 0.98.1-r3 apk
|
libb2 0.98.1-r3 apk
|
||||||
libblkid 2.40.2-r3 apk
|
libblkid 2.40.2-r4 apk
|
||||||
libbsd 0.12.2-r0 apk
|
libbsd 0.12.2-r0 apk
|
||||||
libbz2 1.0.8-r6 apk
|
libbz2 1.0.8-r6 apk
|
||||||
libcrypto3 3.3.2-r3 apk
|
libcrypto3 3.3.2-r4 apk
|
||||||
libcurl 8.9.1-r2 apk
|
libcurl 8.11.0-r2 apk
|
||||||
libeconf 0.6.3-r0 apk
|
libeconf 0.6.3-r0 apk
|
||||||
libexpat 2.6.3-r0 apk
|
libexpat 2.6.4-r0 apk
|
||||||
libffi 3.4.6-r0 apk
|
libffi 3.4.6-r0 apk
|
||||||
libgcc 14.2.0-r4 apk
|
libgcc 14.2.0-r4 apk
|
||||||
libgomp 14.2.0-r4 apk
|
libgomp 14.2.0-r4 apk
|
||||||
libidn2 2.3.7-r0 apk
|
libidn2 2.3.7-r0 apk
|
||||||
libintl 0.22.5-r0 apk
|
libintl 0.22.5-r0 apk
|
||||||
libmd 1.1.0-r0 apk
|
libmd 1.1.0-r0 apk
|
||||||
libmount 2.40.2-r3 apk
|
libmount 2.40.2-r4 apk
|
||||||
libncursesw 6.5_p20241006-r0 apk
|
libncursesw 6.5_p20241006-r3 apk
|
||||||
libpanelw 6.5_p20241006-r0 apk
|
libpanelw 6.5_p20241006-r3 apk
|
||||||
libpcre2-16 10.43-r0 apk
|
libpcre2-16 10.43-r0 apk
|
||||||
libproc2 4.0.4-r2 apk
|
libproc2 4.0.4-r2 apk
|
||||||
libproxy 0.5.9-r0 apk
|
libproxy 0.5.9-r0 apk
|
||||||
libpsl 0.21.5-r3 apk
|
libpsl 0.21.5-r3 apk
|
||||||
libssl3 3.3.2-r3 apk
|
libssl3 3.3.2-r4 apk
|
||||||
libstdc++ 14.2.0-r4 apk
|
libstdc++ 14.2.0-r4 apk
|
||||||
libtorrent-rasterbar 2.0.10-r2 apk
|
libtorrent-rasterbar 2.0.10-r2 apk
|
||||||
libunistring 1.2-r0 apk
|
libunistring 1.2-r0 apk
|
||||||
linux-pam 1.6.1-r1 apk
|
linux-pam 1.6.1-r1 apk
|
||||||
mpdecimal 4.0.0-r0 apk
|
mpdecimal 4.0.0-r0 apk
|
||||||
mscorlib 6.0.3524.45918 dotnet
|
mscorlib 6.0.3524.45918 dotnet
|
||||||
musl 1.2.5-r5 apk
|
musl 1.2.5-r7 apk
|
||||||
musl-utils 1.2.5-r3 apk
|
musl-utils 1.2.5-r5 apk
|
||||||
ncurses-terminfo-base 6.5_p20241006-r0 apk
|
ncurses-terminfo-base 6.5_p20241006-r3 apk
|
||||||
netcat-openbsd 1.226-r0 apk
|
netcat-openbsd 1.226.1.1-r0 apk
|
||||||
netstandard 6.0.3524.45918 dotnet
|
netstandard 6.0.3524.45918 dotnet
|
||||||
nghttp2-libs 1.63.0-r0 apk
|
nghttp2-libs 1.64.0-r0 apk
|
||||||
oniguruma 6.9.9-r0 apk
|
oniguruma 6.9.9-r0 apk
|
||||||
pcre2 10.43-r0 apk
|
pcre2 10.43-r0 apk
|
||||||
procps-ng 4.0.4-r2 apk
|
procps-ng 4.0.4-r2 apk
|
||||||
@@ -244,18 +244,18 @@ pyc 3.12.7-r1
|
|||||||
python3 3.12.7-r1 apk
|
python3 3.12.7-r1 apk
|
||||||
python3-pyc 3.12.7-r1 apk
|
python3-pyc 3.12.7-r1 apk
|
||||||
python3-pycache-pyc0 3.12.7-r1 apk
|
python3-pycache-pyc0 3.12.7-r1 apk
|
||||||
qbittorrent-nox 5.0.0-r2 apk
|
qbittorrent-nox 5.0.2-r0 apk
|
||||||
qbt 1.8.24285.1+c5794123bd204e629729e52e7177834c4ba3bfc2 dotnet
|
qbt 1.8.24285.1+c5794123bd204e629729e52e7177834c4ba3bfc2 dotnet
|
||||||
qt6-qtbase 6.7.2-r2 apk
|
qt6-qtbase 6.8.0-r1 apk
|
||||||
qt6-qtbase-sqlite 6.7.2-r2 apk
|
qt6-qtbase-sqlite 6.8.0-r1 apk
|
||||||
readline 8.2.13-r0 apk
|
readline 8.2.13-r0 apk
|
||||||
scanelf 1.3.8-r0 apk
|
scanelf 1.3.8-r1 apk
|
||||||
shadow 4.16.0-r0 apk
|
shadow 4.16.0-r1 apk
|
||||||
skalibs 2.14.2.0-r2 apk
|
skalibs-libs 2.14.3.0-r0 apk
|
||||||
sqlite-libs 3.47.0-r0 apk
|
sqlite-libs 3.47.1-r0 apk
|
||||||
ssl_client 1.36.1-r32 apk
|
ssl_client 1.37.0-r7 apk
|
||||||
tzdata 2024b-r1 apk
|
tzdata 2024b-r1 apk
|
||||||
utmps-libs 0.1.2.2-r3 apk
|
utmps-libs 0.1.2.3-r2 apk
|
||||||
xz-libs 5.6.3-r0 apk
|
xz-libs 5.6.3-r0 apk
|
||||||
zlib 1.3.1-r2 apk
|
zlib 1.3.1-r2 apk
|
||||||
zstd-libs 1.5.6-r1 apk
|
zstd-libs 1.5.6-r1 apk
|
||||||
|
|||||||
Reference in New Issue
Block a user