mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-26 06:35:40 +03:00
experimental qb container
This commit is contained in:
parent
5be8408613
commit
3abd9d6e55
1
_experemental/qbittorrent/latest/.docker-repository.yml
Normal file
1
_experemental/qbittorrent/latest/.docker-repository.yml
Normal file
@ -0,0 +1 @@
|
|||||||
|
repository: epicmorg/qbittorrent
|
3
_experemental/qbittorrent/latest/.dockerignore
Normal file
3
_experemental/qbittorrent/latest/.dockerignore
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
.git
|
||||||
|
scripts
|
||||||
|
.idea
|
43
_experemental/qbittorrent/latest/Dockerfile
Normal file
43
_experemental/qbittorrent/latest/Dockerfile
Normal 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
|
4
_experemental/qbittorrent/latest/Makefile
Normal file
4
_experemental/qbittorrent/latest/Makefile
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
all: emgqb
|
||||||
|
emgqb:
|
||||||
|
docker build --compress -t epicmorg/qbittorrent .
|
||||||
|
|
@ -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
|
1
_experemental/qbittorrent/stable/.docker-repository.yml
Normal file
1
_experemental/qbittorrent/stable/.docker-repository.yml
Normal file
@ -0,0 +1 @@
|
|||||||
|
repository: epicmorg/qbittorrent
|
3
_experemental/qbittorrent/stable/.dockerignore
Normal file
3
_experemental/qbittorrent/stable/.dockerignore
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
.git
|
||||||
|
scripts
|
||||||
|
.idea
|
44
_experemental/qbittorrent/stable/Dockerfile
Normal file
44
_experemental/qbittorrent/stable/Dockerfile
Normal 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
|
4
_experemental/qbittorrent/stable/Makefile
Normal file
4
_experemental/qbittorrent/stable/Makefile
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
all: emgqb
|
||||||
|
emgqb:
|
||||||
|
docker build --compress -t epicmorg/qbittorrent:stable .
|
||||||
|
|
2
_experemental/qbittorrent/stable/qbittorrent-stable.list
Normal file
2
_experemental/qbittorrent/stable/qbittorrent-stable.list
Normal 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
|
Loading…
Reference in New Issue
Block a user