experimental qb container

This commit is contained in:
Odmin 2019-11-20 03:21:11 +03:00
parent 5be8408613
commit 3abd9d6e55
10 changed files with 107 additions and 0 deletions

View File

@ -0,0 +1 @@
repository: epicmorg/qbittorrent

View File

@ -0,0 +1,3 @@
.git
scripts
.idea

View File

@ -0,0 +1,43 @@
FROM epicmorg/devel
LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
ARG DEBIAN_FRONTEND=noninteractive
##################################################################
# ARGuments
##################################################################
ENV BuildDocker true
ARG SBM_DIR=/mnt/smb
##################################################################
# Files and folders
##################################################################
RUN mkdir -p ${SMB_DIR}
##################################################################
# 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 \
qbittorrent \
cifs-utils
##################################################################
# other customisations
##################################################################
RUN cat /etc/samba/smb.conf
##################################################################
# cleaninig up
##################################################################
RUN apt clean -y && \
apt autoclean -y && \
rm -rfv /var/lib/apt/lists/* && \
rm -rfv /var/cache/apt/archives/*.deb

View File

@ -0,0 +1,4 @@
all: emgqb
emgqb:
docker build --compress -t epicmorg/qbittorrent .

View File

@ -0,0 +1,2 @@
deb http://ppa.launchpad.net/qbittorrent-team/qbittorrent-unstable/ubuntu eoan main
deb-src http://ppa.launchpad.net/qbittorrent-team/qbittorrent-unstable/ubuntu eoan main

View File

@ -0,0 +1 @@
repository: epicmorg/qbittorrent

View File

@ -0,0 +1,3 @@
.git
scripts
.idea

View File

@ -0,0 +1,44 @@
FROM epicmorg/devel
LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
ARG DEBIAN_FRONTEND=noninteractive
##################################################################
# ARGuments
##################################################################
#ENV BuildDocker true
#ARG BUILDS_DIR=/builds
#ARG SRC_DIR=${BUILDS_DIR}/src
#ARG EXPORT_DIR=${BUILDS_DIR}/export
##################################################################
# Files and folders
##################################################################
#RUN mkdir -p ${SRC_DIR} ${EXPORT_DIR} ${PRE_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 update && apt dist-upgrade -y
############################# ####################################
# qbittorrent install
##################################################################
RUN apt-get update && \
apt install -y --allow-unauthenticated --allow-downgrades \
qbittorrent \
cifs-utils
##################################################################
# other customisations
##################################################################
RUN cat /etc/samba/smb.conf
##################################################################
# cleaninig up
##################################################################
RUN apt clean -y && \
apt autoclean -y && \
rm -rfv /var/lib/apt/lists/* && \
rm -rfv /var/cache/apt/archives/*.deb

View File

@ -0,0 +1,4 @@
all: emgqb
emgqb:
docker build --compress -t epicmorg/qbittorrent:stable .

View File

@ -0,0 +1,2 @@
deb http://ppa.launchpad.net/qbittorrent-team/qbittorrent-stable/ubuntu eoan main
deb-src http://ppa.launchpad.net/qbittorrent-team/qbittorrent-stable/ubuntu eoan main