-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
27a2fc4
commit a6df3c3
Showing
12 changed files
with
36 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM epicmorg/debian:bullseye | ||
FROM epicmorg/debian:bookworm | ||
LABEL maintainer="EpicMorg DevTeam, [email protected]" | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
|
@@ -9,25 +9,21 @@ ENV QBT_DIR=/opt/qbittorrent | |
ENV QBT_PORT_WEBUI=8282 | ||
ENV QBT_PORT_TRACKER=9000 | ||
ENV QBT_PORT_NAT=1337 | ||
ENV QBT_VERSION=4.6.2 | ||
ENV QBT_LIBTORRENT_VERSION=1.2.19 | ||
ENV QBT_URL=https://github.com/userdocs/qbittorrent-nox-static/releases/download/release-${QBT_VERSION}_v${QBT_LIBTORRENT_VERSION}/x86_64-qbittorrent-nox | ||
|
||
################################################################## | ||
# Files and folders | ||
################################################################## | ||
RUN mkdir -p ${QBT_DIR} | ||
|
||
################################################################## | ||
# qBitTorrent sources list | ||
################################################################## | ||
#RUN apt-key adv --recv-keys --keyserver keyserver.ubuntu.com D35164147CA69FC4 | ||
#COPY qbittorrent-stable.list /etc/apt/sources.list.d/qbittorrent-stable.list | ||
#RUN apt autoremove -y && apt purge policykit-1 -y && apt update && apt dist-upgrade -y | ||
|
||
############################# #################################### | ||
# qbittorrent install | ||
################################################################## | ||
RUN apt-get update && \ | ||
apt install -y --allow-unauthenticated --allow-downgrades \ | ||
qbittorrent-nox | ||
RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue ${QBT_URL} -O /usr/bin/qbittorrent-nox && \ | ||
chmod +x /usr/bin/qbittorrent-nox && \ | ||
qbittorrent-nox --version | ||
|
||
################################################################## | ||
# other customisations | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
version: '3.9' | ||
services: | ||
qbt-libtorrent2: | ||
image: "epicmorg/qbittorrent:4.6.2" | ||
build: | ||
context: . | ||
qbt-libtorrent1: | ||
image: "epicmorg/qbittorrent:4.6.2-libtorrent1.2.19" | ||
build: | ||
context: . | ||
dockerfile: Dockerfile.lt1 |
File renamed without changes.
File renamed without changes
This file was deleted.
Oops, something went wrong.