52 lines
1.8 KiB
Docker
Raw Normal View History

2019-11-20 03:21:11 +03:00
FROM epicmorg/devel
LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
ARG DEBIAN_FRONTEND=noninteractive
##################################################################
# ARGuments
##################################################################
ENV BuildDocker true
2019-11-20 17:41:48 +03:00
ARG SMB_DIR=/mnt/smb
2019-11-20 17:31:45 +03:00
ARG QBT_DIR=/opt/qbittorrent
2019-11-20 03:21:11 +03:00
##################################################################
# Files and folders
##################################################################
2019-11-20 17:31:45 +03:00
RUN mkdir -p ${SMB_DIR} ${QBT_DIR}
2019-11-20 03:21:11 +03:00
##################################################################
# qBitTorrent sources list
##################################################################
RUN apt-key adv --recv-keys --keyserver keyserver.ubuntu.com D35164147CA69FC4
COPY qbittorrent-unstable.list /etc/apt/sources.list.d/qbittorrent-unstable.list
RUN apt autoremove -y && apt update && apt dist-upgrade -y
############################# ####################################
# qbittorrent install
##################################################################
RUN apt-get update && \
apt install -y --allow-unauthenticated --allow-downgrades \
2019-11-20 17:31:45 +03:00
qbittorrent-nox \
ntfs-3g \
winbind \
2019-11-20 03:21:11 +03:00
cifs-utils
##################################################################
# other customisations
##################################################################
2019-11-20 17:31:45 +03:00
2019-11-20 03:21:11 +03:00
##################################################################
# cleaninig up
##################################################################
RUN apt clean -y && \
apt autoclean -y && \
rm -rfv /var/lib/apt/lists/* && \
rm -rfv /var/cache/apt/archives/*.deb
2019-11-20 17:31:45 +03:00
VOLUME ${QBT_DIR}
EXPOSE 8080
ENTRYPOINT /entrypoint.sh