From 09c2f5d23ef4958a8b293e2258fa5ce9e2e2e764 Mon Sep 17 00:00:00 2001 From: Donny <90471623+DonMcD@users.noreply.github.com> Date: Tue, 27 Feb 2024 19:13:29 -0700 Subject: [PATCH] Update docker-compose.yml --- docker-compose.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 2f709b3..b9cccc6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -380,4 +380,37 @@ services: - /var/run/docker.sock:/var/run/docker.sock ports: - 9999:8080 + + #Unpacker - Used to unzip zipped files + unpackerr: + image: golift/unpackerr + container_name: unpackerr + + volumes: + # You need at least this one volume mapped so Unpackerr can find your files to extract. + # Make sure this matches your Starr apps; the folder mount (/downloads or /data) should be identical. + - ${UNRAID_SHARE}:/share/downloads + #- ${BASE_PATH}/unpackerr/config:/config + restart: always + user: 1000:1000 + # What you see below are defaults for this compose. You only need to modify things specific to your environment. + # Remove apps and feature configs you do not use or need. + # ie. Remove all lines that begin with UN_CMDHOOK, UN_WEBHOOK, UN_FOLDER, UN_WEBSERVER, and other apps you do not use. + environment: + - UN_START_DELAY=1m + #- UMASK=002 + - TZ=${TZ} + #- UN_DEBUG=true + # Sonarr Config + - UN_SONARR_0_URL=http://radarr:8989 + - UN_SONARR_0_API_KEY=${SONARR_KEY} + - UN_SONARR_0_PATHS_0=/share/downloads/tv + - UN_SONARR_0_TIMEOUT=10s + #- UN_SONARR_0_PATHS_0=/share/downloads/tv + # Radarr Config + - UN_RADARR_0_URL=http://sonarr:7878 + - UN_RADARR_0_API_KEY=${RADARR_KEY} + - UN_RADARR_0_PATHS_0=/share/downloads/movies + - UN_RADARR_0_TIMEOUT=10s + #- UN_RADARR_0_PATHS_0=/share/downloads/movies