From da5032c46c70b86fe4accbc60775452192beeecd Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 4 Sep 2022 13:15:49 +0200 Subject: [PATCH] Update Dockerfile --- qbittorrent/Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/qbittorrent/Dockerfile b/qbittorrent/Dockerfile index 3b7459288..9dc8ee5c0 100644 --- a/qbittorrent/Dockerfile +++ b/qbittorrent/Dockerfile @@ -16,7 +16,7 @@ ARG BUILD_FROM ARG BUILD_VERSION -ARG BUILD_UPSTREAM="latest" +ARG BUILD_UPSTREAM="4.4.3.1-r1-ls208" FROM ${BUILD_FROM}-$BUILD_UPSTREAM ################## @@ -39,8 +39,11 @@ ENV \ # SPECIFIC IMAGES MODIFICATIONS RUN \ + # Correction for s6v3 + ln -sf /etc/services.d/qbittorrent/run /etc/s6-overlay/s6-rc.d/svc-qbittorrent/run \ + \ # Set download folder to /share - sed -i 's|/downloads/|/share/qBittorrent/|g' /defaults/qBittorrent.conf \ + && sed -i 's|/downloads/|/share/qBittorrent/|g' /defaults/qBittorrent.conf \ \ # Remove fixed folders, allows connection to webUI && sed '11,13d' /defaults/qBittorrent.conf \