-
Notifications
You must be signed in to change notification settings - Fork 2
/
Dockerfile.armv7
74 lines (65 loc) · 3.77 KB
/
Dockerfile.armv7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
FROM alpine:3.13 as compilingqB
#compiling qB
ARG LIBTORRENT_VER=1.1.14
ARG QBITTORRENT_VER=4.2.5.10
RUN apk add --no-cache ca-certificates make g++ gcc qt5-qtsvg-dev boost-dev qt5-qttools-dev file qt5-qtbase-dev \
&& mkdir /qbtorrent \
# && wget -P /qbtorrent https://github.com/arvidn/libtorrent/releases/download/libtorrent-${LIBTORRENT_VER}/libtorrent-rasterbar-${LIBTORRENT_VER}.tar.gz \
&& wget -P /qbtorrent https://github.com/arvidn/libtorrent/releases/download/libtorrent-`echo "$LIBTORRENT_VER"|sed 's#\.#_#g'`/libtorrent-rasterbar-${LIBTORRENT_VER}.tar.gz \
#&& wget -P /qbtorrent https://github.com/arvidn/libtorrent/releases/download/libtorrent_`echo "$LIBTORRENT_VER"|sed 's#\.#_#g'`/libtorrent-rasterbar-${LIBTORRENT_VER}.tar.gz \
&& tar -zxvf /qbtorrent/libtorrent-rasterbar-${LIBTORRENT_VER}.tar.gz -C /qbtorrent \
&& cd /qbtorrent/libtorrent-rasterbar-${LIBTORRENT_VER} \
# && if [ "$(uname -m)" = "x86_64" ];then host=x86_64-alpine-linux-musl;elif [ "$(uname -m)" = "aarch64" ];then host=aarch64-alpine-linux-musl;elif [ "$(uname -m)" = "armv7l" ];then host=armv7-alpine-linux-musleabihf; fi \
# && echo $host \
&& ./configure --host=armv7-alpine-linux-musleabihf \
&& make install-strip -j$(nproc) \
#qBittorrent-Enhanced-Edition
&& wget -P /qbtorrent https://github.com/c0re100/qBittorrent-Enhanced-Edition/archive/release-${QBITTORRENT_VER}.zip \
&& unzip /qbtorrent/release-${QBITTORRENT_VER}.zip -d /qbtorrent \
&& cd /qbtorrent/qBittorrent-Enhanced-Edition-release-${QBITTORRENT_VER} \
&& ./configure --disable-gui --host=armv7-alpine-linux-musleabihf \
&& make install -j$(nproc) \
&& ldd /usr/local/bin/qbittorrent-nox |cut -d ">" -f 2|grep lib|cut -d "(" -f 1|xargs tar -chvf /qbtorrent/qbittorrent.tar \
&& mkdir /qbittorrent \
&& tar -xvf /qbtorrent/qbittorrent.tar -C /qbittorrent \
&& cp --parents /usr/local/bin/qbittorrent-nox /qbittorrent
# docker qB
FROM alpine:3.13
ARG S6_VER=2.2.0.3
ENV TRACKERSAUTO=true
ENV TRACKERS_LIST_URL=https://jsd.cdn.zzko.cn/gh/XIU2/TrackersListCollection/best.txt
ENV TZ=Asia/Shanghai
ENV WEBUIPORT=8989
ENV PUID=1000
ENV PGID=1000
ENV UMASK=022
COPY root /
COPY --from=compilingqB /qbittorrent /
#install bash curl tzdata python3 shadow qt6
RUN apk add --no-cache bash curl ca-certificates tzdata python3 shadow qt5-qtbase-sqlite qt5-qtbase libexecinfo \
#install s6-overlay
&& if [ "$(uname -m)" = "x86_64" ];then s6_arch=amd64;elif [ "$(uname -m)" = "aarch64" ];then s6_arch=aarch64;elif [ "$(uname -m)" = "armv7l" ];then s6_arch=arm; fi \
&& wget --no-check-certificate https://github.com/just-containers/s6-overlay/releases/download/v${S6_VER}/s6-overlay-${s6_arch}.tar.gz \
&& tar -xvzf s6-overlay-${s6_arch}.tar.gz \
#create qbittorrent user
&& useradd -u 1000 -U -d /config -s /bin/false qbittorrent \
&& usermod -G users qbittorrent \
#install Search
&& wget -P /tmp https://github.com/qbittorrent/search-plugins/archive/refs/heads/master.zip \
&& unzip /tmp/master.zip -d /tmp \
&& mkdir -p /usr/local/qbittorrent/defaults/Search \
&& cp /tmp/search-plugins-master/nova3/engines/*.py /usr/local/qbittorrent/defaults/Search \
#conf trackers
&& curl -so /tmp/trackers_all.txt $TRACKERS_LIST_URL \
&& Newtrackers="Bittorrent\TrackersList=$(awk '{if(!NF){next}}1' /tmp/trackers_all.txt|sed ':a;N;s/\n/\\n/g;ta' )" \
&& echo $Newtrackers >/tmp/Newtrackers.txt \
&& sed -i '/Bittorrent\\TrackersList=/r /tmp/Newtrackers.txt' /usr/local/qbittorrent/defaults/qBittorrent.conf \
&& sed -i '1,/^Bittorrent\\TrackersList=.*/{//d;}' /usr/local/qbittorrent/defaults/qBittorrent.conf \
#clear
&& rm s6-overlay-${s6_arch}.tar.gz \
&& rm -rf /var/cache/apk/* /tmp/* \
&& chmod a+x /usr/local/qbittorrent/updatetrackers.sh \
&& chmod a+x /usr/local/bin/qbittorrent-nox
VOLUME /downloads /config
EXPOSE 8989 6881 6881/udp
ENTRYPOINT [ "/init" ]