Compare commits

..

20 Commits
30 ... 83

Author SHA1 Message Date
sparklyballs
c11d7c7dc2 Update README.md 2018-06-08 15:59:41 +01:00
sparklyballs
489adb5d50 Merge pull request #21 from linuxserver/Bump-version-to-4.1.1
Bump version to 4.1.1
2018-06-08 15:55:14 +01:00
sparklyballs
ab47931546 remove patch 2018-06-02 11:31:44 +01:00
chbmb
64d330d04c Update Dockerfile 2018-06-02 11:06:37 +01:00
sparklyballs
06d53f02f4 Merge pull request #20 from linuxserver/bump_versions
bump libtorrent version
2018-04-26 13:27:47 +01:00
sparklyballs
87b783fd8c bump libtorrent version 2018-04-26 09:39:28 +01:00
sparklyballs
f09f155753 update changelog 2018-03-02 19:49:56 +00:00
sparklyballs
1c7351b7c0 Merge pull request #19 from pl77/4.0.4-Update
Update to qbittorrent 4.0.4 and libtorrent 1.1.6
2018-03-02 19:49:06 +00:00
pl77
2359b3b2f2 Update to qbittorrent 4.0.4 and libtorrent 1.1.6
No change necessary to patch file.
2018-03-02 12:48:44 -05:00
sparklyballs
f6d230b542 Merge pull request #17 from linuxserver/deprecate_cpu_core
deprecate cpu_core routine lack of scaling
2018-01-03 11:25:14 +00:00
sparklyballs
bf7c1a5fd4 deprecate cpu_core routine lack of scaling 2018-01-02 21:39:50 +00:00
sparklyballs
18eadcefdb Merge pull request #16 from Owkkuri/version_update_4_0_3
Version update 4 0 3
2017-12-19 11:50:58 +00:00
Ross van Wyk
07e75f2949 update docs
Add version change to Versions list
2017-12-19 01:11:21 +02:00
Ross van Wyk
3c3ae9cab1 version update
Update qbittorrent version to 4.0.3, was 4.0.2
2017-12-19 01:10:40 +02:00
sparklyballs
c5579f753b Merge pull request #14 from linuxserver/3.7
bump to alpine 3.7 and fix continuation lines
2017-12-17 00:12:39 +00:00
sparklyballs
9c178a4fdf bump to alpine 3.7 and fix continuation lines 2017-12-09 13:10:44 +00:00
j0nnymoe
6b61bdc9d9 Merge pull request #13 from linuxserver/4.0.2
update to v4.0.2
2017-12-01 20:52:24 +00:00
sparklyballs
4929d34e2f update to v4.0.2 2017-12-01 19:36:51 +00:00
saarg
9c8ffeb5ba Merge pull request #12 from linuxserver/v4_update
update to v4 and latest rasterbar, use cpu core routine
2017-11-29 12:23:04 +01:00
sparklyballs
bf017d1624 update to v4 and latest rasterbar, use cpu core routine 2017-11-27 17:02:58 +00:00
2 changed files with 20 additions and 21 deletions

View File

@@ -1,25 +1,22 @@
FROM lsiobase/alpine:3.6 FROM lsiobase/alpine:3.7
MAINTAINER sparklyballs
# set version label # set version label
ARG BUILD_DATE ARG BUILD_DATE
ARG VERSION ARG VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="sparklyballs"
# package versions # package versions
ARG QBITTORRENT_VER="3.3.16" ARG QBITTORRENT_VER="4.1.1"
ARG RASTERBAR_VER="RC_1_0" ARG RASTERBAR_VER="1.1.7"
# environment settings # environment settings
ENV HOME="/config" \ ENV HOME="/config" \
XDG_CONFIG_HOME="/config" \ XDG_CONFIG_HOME="/config" \
XDG_DATA_HOME="/config" XDG_DATA_HOME="/config"
# copy patches
COPY patches/ /tmp/patches
# install build packages
RUN \ RUN \
echo "**** install build packages ****" && \
apk add --no-cache --virtual=build-dependencies \ apk add --no-cache --virtual=build-dependencies \
autoconf \ autoconf \
automake \ automake \
@@ -33,8 +30,7 @@ RUN \
libtool \ libtool \
make \ make \
qt5-qttools-dev && \ qt5-qttools-dev && \
echo "**** install runtime packages ****" && \
# install runtime packages
apk add --no-cache \ apk add --no-cache \
boost-system \ boost-system \
boost-thread \ boost-thread \
@@ -42,24 +38,22 @@ RUN \
geoip \ geoip \
qt5-qtbase \ qt5-qtbase \
unrar && \ unrar && \
echo "**** compile libtorrent rasterbar ****" && \
# compile libtorrent rasterbar
git clone https://github.com/arvidn/libtorrent.git /tmp/libtorrent && \ git clone https://github.com/arvidn/libtorrent.git /tmp/libtorrent && \
cd /tmp/libtorrent && \ cd /tmp/libtorrent && \
git checkout ${RASTERBAR_VER} && \ RASTERBAR_REALVER=${RASTERBAR_VER//./_} && \
git checkout "libtorrent-${RASTERBAR_REALVER}" && \
./autotool.sh && \ ./autotool.sh && \
./configure \ ./configure \
--disable-debug \ --disable-debug \
--enable-encryption \ --enable-encryption \
--prefix=/usr \ --prefix=/usr && \
--with-libgeoip=system && \
make && \ make && \
make install && \ make install && \
strip --strip-unneeded \ strip --strip-unneeded \
/usr/lib/libtorrent-rasterbar.so* \ /usr/lib/libtorrent-rasterbar.so* \
/usr/lib/libtorrent-rasterbar.a* && \ /usr/lib/libtorrent-rasterbar.a* && \
echo "**** compile qbittorrent ****" && \
# compile qbittorrent
mkdir -p \ mkdir -p \
/tmp/qbittorrent-src && \ /tmp/qbittorrent-src && \
curl -o \ curl -o \
@@ -68,16 +62,13 @@ RUN \
tar xf \ tar xf \
/tmp/bittorrent.tar.gz -C \ /tmp/bittorrent.tar.gz -C \
/tmp/qbittorrent-src --strip-components=1 && \ /tmp/qbittorrent-src --strip-components=1 && \
cd /tmp/qbittorrent-src/src/app && \
patch -i /tmp/patches/main.patch && \
cd /tmp/qbittorrent-src && \ cd /tmp/qbittorrent-src && \
./configure \ ./configure \
--disable-gui \ --disable-gui \
--prefix=/usr && \ --prefix=/usr && \
make && \ make && \
make install && \ make install && \
echo "**** cleanup ****" && \
# cleanup
apk del --purge \ apk del --purge \
build-dependencies && \ build-dependencies && \
rm -rf \ rm -rf \

View File

@@ -100,5 +100,13 @@ To monitor the logs of the container in realtime: `docker logs -f qbittorrent`
## Versions ## Versions
+ **08.06.18:** Bump qbitorrent to 4.1.1.
+ **26.04.18:** Bump libtorrent to 1.1.7.
+ **02.03.18:** Bump qbitorrent to 4.0.4 and libtorrent to 1.1.6.
+ **02.01.18:** Deprecate cpu_core routine lack of scaling.
+ **19.12.17:** Update to v4.0.3.
+ **09.12.17:** Rebase to alpine 3.7.
+ **01.12.17:** Update to v4.0.2.
+ **27.11.17:** Update to v4 and use cpu_core routine to speed up builds.
+ **16.09.17:** Bump to 3.3.16, Add WEBUI_PORT variable and notes to README to allow changing port of webui. + **16.09.17:** Bump to 3.3.16, Add WEBUI_PORT variable and notes to README to allow changing port of webui.
+ **01.08.17:** Initial Release. + **01.08.17:** Initial Release.