From 6687ef432a0f8203965c5f076eb62a8cacc03bb3 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 14 Feb 2021 14:45:11 +0100 Subject: [PATCH] Update Dockerfile --- qbittorrent/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qbittorrent/Dockerfile b/qbittorrent/Dockerfile index db4872049..5f8b8e37c 100644 --- a/qbittorrent/Dockerfile +++ b/qbittorrent/Dockerfile @@ -32,6 +32,8 @@ RUN \ && sed -i 's/bash/bashio/g' /etc/cont-init.d/10-adduser \ && sed -i 's/{PUID:-911}/(bashio::config "PUID")/g' /etc/cont-init.d/10-adduser \ && sed -i 's/{PGID:-911}/(bashio::config "PGID")/g' /etc/cont-init.d/10-adduser \ + # Set download folder to /share + && sed -i 's|/downloads/|/share/qBittorrent/|g' /defaults/qbittorrent.conf \ # Remove fixed folders, allows connection to webUI && sed '11,13d' /defaults/qBittorrent.conf \ && echo 'WebUI\HostHeaderValidation=false' >> /defaults/qBittorrent.conf \