From 87e1a0d937442d0b8d730dbb11c7a7ba76e27d58 Mon Sep 17 00:00:00 2001 From: criz Date: Wed, 17 Sep 2025 01:20:36 +0200 Subject: [PATCH] TorrentHDD_vs_SSD --- Containers/Jellyfin/compose.yml | 4 +++- Containers/QbittorentHDD/compose.yml | 22 +++++++++++++++++++ .../compose.yml | 4 ++-- 3 files changed, 27 insertions(+), 3 deletions(-) create mode 100644 Containers/QbittorentHDD/compose.yml rename Containers/{Qbittorrent => QbittorentSSD}/compose.yml (86%) diff --git a/Containers/Jellyfin/compose.yml b/Containers/Jellyfin/compose.yml index 5ead37a..c4c1ec8 100644 --- a/Containers/Jellyfin/compose.yml +++ b/Containers/Jellyfin/compose.yml @@ -3,7 +3,6 @@ services: restart: 'unless-stopped' image: jellyfin/jellyfin container_name: jellyfin - # user: 1000:1000 network_mode: 'host' volumes: - ./config:/config @@ -13,6 +12,9 @@ services: target: /media devices: - /dev/dri:/dev/dri + group_add: + - 44 + - 922 labels: tsdproxy.enable: "true" tsdproxy.name: "stream" diff --git a/Containers/QbittorentHDD/compose.yml b/Containers/QbittorentHDD/compose.yml new file mode 100644 index 0000000..84125fc --- /dev/null +++ b/Containers/QbittorentHDD/compose.yml @@ -0,0 +1,22 @@ +--- +services: + qbittorrent: + image: lscr.io/linuxserver/qbittorrent:latest + container_name: qbittorrentHDD + environment: + - PUID=1000 + - PGID=1000 + - TZ=Etc/UTC + - WEBUI_PORT=13462 + - TORRENTING_PORT=6882 + volumes: + - ./config:/config + - /mnt/moviesHDD/torrents:/downloads #optional + ports: + - 13462:13462 + - 6882:6882 + - 6882:6882/udp + restart: unless-stopped + labels: + tsdproxy.enable: "true" + tsdproxy.name: "torrentHDD" diff --git a/Containers/Qbittorrent/compose.yml b/Containers/QbittorentSSD/compose.yml similarity index 86% rename from Containers/Qbittorrent/compose.yml rename to Containers/QbittorentSSD/compose.yml index 1c1fec3..8c1fbd4 100644 --- a/Containers/Qbittorrent/compose.yml +++ b/Containers/QbittorentSSD/compose.yml @@ -2,7 +2,7 @@ services: qbittorrent: image: lscr.io/linuxserver/qbittorrent:latest - container_name: qbittorrent + container_name: qbittorrentSSD environment: - PUID=1000 - PGID=1000 @@ -19,4 +19,4 @@ services: restart: unless-stopped labels: tsdproxy.enable: "true" - tsdproxy.name: "torrent" + tsdproxy.name: "torrentSSD"