1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-22 20:44:15 +00:00

Add support for search engine

Also mount /tmp as writable, this is required by qbt and not just for
the search engine functionality.
This commit is contained in:
Chocobo1 2022-05-05 19:50:05 +08:00
parent 0e456f33c1
commit 7562e0e870
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
2 changed files with 5 additions and 1 deletions

View File

@ -42,8 +42,11 @@ RUN \
apk --no-cache add \ apk --no-cache add \
doas \ doas \
libtorrent-rasterbar \ libtorrent-rasterbar \
python3 \
qt6-qtbase \ qt6-qtbase \
tini && \ tini
RUN \
adduser \ adduser \
-D \ -D \
-H \ -H \

View File

@ -37,6 +37,7 @@ docker build \
-it \ -it \
--read-only \ --read-only \
--rm \ --rm \
--tmpfs /tmp \
--name qbittorrent-nox \ --name qbittorrent-nox \
-e QBT_EULA \ -e QBT_EULA \
-e QBT_WEBUI_PORT \ -e QBT_WEBUI_PORT \