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