From d80eab6d57ed4e787f5d675cf4158568d8a147de Mon Sep 17 00:00:00 2001 From: caretaker Date: Wed, 22 Apr 2026 21:56:27 +0500 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20docker-compose.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.yml | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 856ac82..984dce1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -55,4 +55,32 @@ services: - JELLYFIN_PublishedServerUrl=http://trp.lan/ # Optional - may be necessary for docker healthcheck to pass if running in host network mode extra_hosts: - - 'host.docker.internal:host-gateway' \ No newline at end of file + - 'host.docker.internal:host-gateway' + jackett: + image: lscr.io/linuxserver/jackett:latest + container_name: jackett + environment: + - PUID=1000 + - PGID=1000 + - TZ=Asia/Yekaterinburg + - AUTO_UPDATE=true #optional + volumes: + - /mnt/hdd/jackett/data:/config + - /mnt/hdd/downloads:/downloads + ports: + - 9117:9117 + restart: unless-stopped + sonarr: + image: lscr.io/linuxserver/sonarr:latest + container_name: sonarr + environment: + - PUID=1000 + - PGID=1000 + - TZ=Asia/Yekaterinburg + volumes: + - /mnt/hdd/sonarr/data:/config + - /mnt/hdd/jellyfin/media/tvseries:/tv #optional + - /mnt/hdd/downloads:/downloads #optional + ports: + - 8989:8989 + restart: unless-stopped \ No newline at end of file