mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-26 06:35:40 +03:00
60 lines
2.2 KiB
Docker
60 lines
2.2 KiB
Docker
FROM epicmorg/debian:bookworm
|
|
LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
##################################################################
|
|
# ARGuments
|
|
##################################################################
|
|
ENV QBT_DIR=/opt/qbittorrent
|
|
ENV QBT_PORT_WEBUI=8282
|
|
ENV QBT_PORT_TRACKER=9000
|
|
|
|
##################################################################
|
|
# Files and folders
|
|
##################################################################
|
|
RUN mkdir -p ${QBT_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 purge policykit-1 -y && apt update && apt dist-upgrade -y
|
|
|
|
############################# ####################################
|
|
# qbittorrent install
|
|
##################################################################
|
|
RUN apt-get update && \
|
|
apt install -y --allow-unauthenticated --allow-downgrades \
|
|
qbittorrent-nox
|
|
|
|
##################################################################
|
|
# other customisations
|
|
##################################################################
|
|
|
|
|
|
##################################################################
|
|
# cleaninig up
|
|
##################################################################
|
|
RUN apt clean -y && \
|
|
apt autoclean -y && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
rm -rf /var/cache/apt/archives/*.deb && \
|
|
rm -rf /builds/* && \
|
|
rm -rf /valve/*
|
|
|
|
VOLUME ${QBT_DIR}
|
|
|
|
#healthcheck. good practice
|
|
HEALTHCHECK --interval=2m --timeout=3s CMD curl -f http://localhost:${QBT_PORT_WEBUI}/ || exit 1
|
|
|
|
# Add image configuration and scripts
|
|
COPY docker-entrypoint.sh /usr/bin/docker-entrypoint.sh
|
|
RUN chmod 755 /usr/bin/docker-entrypoint.sh
|
|
|
|
#Final config
|
|
EXPOSE ${QBT_PORT_WEBUI} ${QBT_PORT_WEBUI}/udp ${QBT_PORT_TRACKER} ${QBT_PORT_TRACKER}/udp
|
|
|
|
ENTRYPOINT ["tini", "-s", "--", "docker-entrypoint.sh"]
|
|
CMD ["docker-entrypoint.sh"]
|