saltyorg / Sandbox

Saltbox Sandbox
GNU General Public License v3.0
66 stars 92 forks source link

Radarr Extended #239

Closed mtauberjr closed 10 months ago

mtauberjr commented 1 year ago

https://github.com/RandomNinjaAtk/docker-radarr-extended

owine commented 1 year ago

Since this can just drop in to the existing radarr role in Saltbox using the inventory system, I don't see the need for a separate role. Some sample inventory entries were provided in the Discord.

radarr_docker_image: "randomninjaatk/radarr-extended:latest"
radarr_docker_envs_custom:
  enableAutoConfig: "true"
  enableRecyclarr: "true"
  enableQueueCleaner: "true"
  enableExtras: "true"
  extrasType: "all"
  extrasLanguages: "en-US,it-IT"
  extrasOfficialOnly: "false"
  extrasSingle: "false"
  extrasKodiCompatibility: "false"
  plexUrl: "https://plex.domain.tld"
  plexToken: "Token_Goes_Here"

@maximuskowalski let me know if you feel differently.

mtauberjr commented 1 year ago

fatal: [localhost]: FAILED! => {"attempts": 1, "changed": false, "msg": "Error pulling image randomninjaatk/radarr-extended:latest:release - 404 Client Error for http+docker://localhost/v1.42/images/create?tag=release&fromImage=randomninjaatk%2Fradarr-extended: Not Found (\"manifest for randomninjaatk/radarr-extended:release not found: manifest unknown: manifest unknown\")"}

havent been able to get it to work

On Fri, Mar 24, 2023 at 11:24 AM owine @.***> wrote:

Since this can just drop in to the existing radarr role in Saltbox using the inventory system, I don't see the need for a separate role. Some sample inventory entries were provided in the Discord.

radarr_docker_image: "randomninjaatk/radarr-extended:latest" radarr_docker_envs_custom: enableAutoConfig: "true" enableRecyclarr: "true" enableQueueCleaner: "true" enableExtras: "true" extrasType: "all" extrasLanguages: "en-US,it-IT" extrasOfficialOnly: "false" extrasSingle: "false" extrasKodiCompatibility: "false" plexUrl: "https://plex.domain.tld" plexToken: "Token_Goes_Here"

@maximuskowalski https://github.com/maximuskowalski let me know if you feel differently.

— Reply to this email directly, view it on GitHub https://github.com/saltyorg/Sandbox/issues/239#issuecomment-1483078792, or unsubscribe https://github.com/notifications/unsubscribe-auth/AACFMM7EDW5EVZPK2QFWEGTW5XDEFANCNFSM6AAAAAAWGYQDGI . You are receiving this because you authored the thread.Message ID: @.***>

owine commented 1 year ago

Try

radarr_docker_image_repo: "randomninjaatk/radarr-extended"
radarr_docker_image_tag: "latest"

And remove

radarr_docker_image: "randomninjaatk/radarr-extended:latest"
maximuskowalski commented 1 year ago

I think what we could do for stuff like this is have a library of inventory examples in sandpit. Same applies to #240

mtauberjr commented 1 year ago

yeah so I run it manually it works with compose d file outside of saltbox. but if run it saltbox the mappings and scripts are messed up. Its missing most of them --for whatever reason its missing most the bash files it added

mtauberjr commented 1 year ago

image

owine commented 1 year ago

If you continue to need help getting this working with SB using inventories, please join the Discord. This is not a good place for support

owine commented 1 year ago

I think what we could do for stuff like this is have a library of inventory examples in sandpit. Same applies to #240

Agreed

jscottdouglas commented 1 year ago
`#Radarr Settings (Add Extender)
radarr_docker_image: "randomninjaatk/radarr-extended:latest"
radarr_docker_envs_custom:
enableAutoConfig: "false"
enableRecyclarr: "false"
enableQueueCleaner: "false"
enableExtras: "true"
extrasType: "trailers"
extrasLanguages: "en-US"
extrasOfficialOnly: "true"
extrasSingle: "false"
extrasKodiCompatibility: "true"
#Radarr Volume Settings for Extender#Radarr Volume Settings for Extender
radarr_docker_volumes_default:
  - "{{ radarr_paths_location }}:/config"
  - "/mnt/unionfs/Media/Movies:/movies"
`

This should do the trick for you.

saltydk commented 10 months ago

Looks like the image has been deprecated, close?