add cert-sorter, qbt and radarr containers

This commit is contained in:
=
2025-01-12 00:04:19 -05:00
parent 6489d90b9f
commit 11bb2d519e
5 changed files with 87 additions and 1 deletions

23
qbittorrent/Dockerfile Normal file
View File

@ -0,0 +1,23 @@
FROM ubuntu:24.04
ENV QBITTORRENT_VERSION=5.0.3
RUN echo "deb https://ppa.launchpadcontent.net/qbittorrent-team/qbittorrent-stable/ubuntu noble main" >> /etc/apt/sources.list.d/ubuntu.sources && \
apt update && \
apt install -y \
qbittorrent-nox
RUN mkdir -p /config /media && \
chmod 775 /config /media && \
chown ubuntu:ubuntu /config /media
USER ubuntu
VOLUME /config
VOLUME /media
WORKDIR /config
ENTRYPOINT [ "/usr/bin/qbittorrent-nox" ]
CMD [ "--profile=/config" ]