From 726edf435ba3e6288039a56b44a9d12ed5a52958 Mon Sep 17 00:00:00 2001 From: criz Date: Tue, 16 Sep 2025 02:09:18 +0200 Subject: [PATCH] qbittorent + jellyfin --- Containers/Jellyfin/compose.yml | 18 ++++++++++++++++++ Containers/NextCloud/compose.yml | 5 +++-- Containers/Qbittorrent/compose.yml | 22 ++++++++++++++++++++++ 3 files changed, 43 insertions(+), 2 deletions(-) create mode 100644 Containers/Jellyfin/compose.yml create mode 100644 Containers/Qbittorrent/compose.yml diff --git a/Containers/Jellyfin/compose.yml b/Containers/Jellyfin/compose.yml new file mode 100644 index 0000000..5ead37a --- /dev/null +++ b/Containers/Jellyfin/compose.yml @@ -0,0 +1,18 @@ +services: + jellyfin: + restart: 'unless-stopped' + image: jellyfin/jellyfin + container_name: jellyfin + # user: 1000:1000 + network_mode: 'host' + volumes: + - ./config:/config + - ./cache:/cache + - type: bind + source: /mnt/moviesHDD/JellyfinMedias + target: /media + devices: + - /dev/dri:/dev/dri + labels: + tsdproxy.enable: "true" + tsdproxy.name: "stream" diff --git a/Containers/NextCloud/compose.yml b/Containers/NextCloud/compose.yml index cb076b0..dc221e2 100644 --- a/Containers/NextCloud/compose.yml +++ b/Containers/NextCloud/compose.yml @@ -12,12 +12,13 @@ services: volumes: - ./nextcloud_data:/var/www/html - /home/criz/Medias:/mnt/medias + - /mnt/moviesHDD:/mnt/movieshdd environment: - PUID=1000 - PGID=1000 - REDIS_HOST=redis - - PHP_MEMORY_LIMIT=4GB - - PHP_UPLOAD_LIMIT=64GB + - PHP_MEMORY_LIMIT=4G + - PHP_UPLOAD_LIMIT=64G - APACHE_BODY_LIMIT=0 labels: tsdproxy.enable: "true" diff --git a/Containers/Qbittorrent/compose.yml b/Containers/Qbittorrent/compose.yml new file mode 100644 index 0000000..1c1fec3 --- /dev/null +++ b/Containers/Qbittorrent/compose.yml @@ -0,0 +1,22 @@ +--- +services: + qbittorrent: + image: lscr.io/linuxserver/qbittorrent:latest + container_name: qbittorrent + environment: + - PUID=1000 + - PGID=1000 + - TZ=Etc/UTC + - WEBUI_PORT=13461 + - TORRENTING_PORT=6881 + volumes: + - ./config:/config + - /home/criz/Medias/Torrents:/downloads #optional + ports: + - 13461:13461 + - 6881:6881 + - 6881:6881/udp + restart: unless-stopped + labels: + tsdproxy.enable: "true" + tsdproxy.name: "torrent"