Giter VIP home page Giter VIP logo

Comments (19)

davidnewhall avatar davidnewhall commented on June 13, 2024 1

Can you share your entire configuration so we can help you find the problem?

from unpackerr.

Simpuhl avatar Simpuhl commented on June 13, 2024 1

It gives me a red line doing it that way

image

I removed the space and it seems ok:

image

from unpackerr.

davidnewhall avatar davidnewhall commented on June 13, 2024 1

https://github.com/Unpackerr/unpackerr/blob/main/examples/docker-compose.yml#L17

Never used or looked at portainer.

from unpackerr.

Simpuhl avatar Simpuhl commented on June 13, 2024 1

thank you very much

from unpackerr.

davidnewhall avatar davidnewhall commented on June 13, 2024

Works for me.

$ UN_WHISPARR_0_API_KEY=1234 UN_WHISPARR_0_URL=https://foo1.com ./unpackerr
[INFO] 2024/02/09 17:07:43.858436 start.go:150: Unpackerr v0.12.0 Starting! PID: 78687, UID: 502, GID: 20, Now: 2024-02-09 17:07:44 -0800 PST
2024/02/09 17:07:43 [ERROR] Whisparr (https://foo1.com) provided application API Key is invalid, must be 32 characters, your key length: 4

from unpackerr.

Simpuhl avatar Simpuhl commented on June 13, 2024

It also ignored for me

# Folder Config

hmmm

from unpackerr.

Simpuhl avatar Simpuhl commented on June 13, 2024

name: unpackerr
services:
unpackerr:
container_name: unpackerr
network_mode: bridge
restart: unless-stopped
stop_grace_period: 300s
environment:
- PUID=XXXX
- PGID=XXX
- UMASK=002
- TZ=America/Los_Angeles
# General config
- UN_DEBUG=false
- UN_LOG_FILE=
- UN_LOG_FILES=10
- UN_LOG_FILE_MB=10
- UN_INTERVAL=2m
- UN_START_DELAY=1m
- UN_RETRY_DELAY=5m
- UN_MAX_RETRIES=3
- UN_PARALLEL=1
- UN_FILE_MODE=0644
- UN_DIR_MODE=0755
# Sonarr Config
- UN_SONARR_0_URL=http://192.168.0.178:8989
- UN_SONARR_0_API_KEY=XXX
- UN_SONARR_0_PATHS_0=/downloads/tv-sonarr
- UN_SONARR_0_PROTOCOLS=torrent
- UN_SONARR_0_TIMEOUT=10s
- UN_SONARR_0_DELETE_ORIG=false
- UN_SONARR_0_DELETE_DELAY=5m
# Radarr Config
- UN_RADARR_0_URL=http://192.168.0.178:7878
- UN_RADARR_0_API_KEY=XXX
- UN_RADARR_0_PATHS_0=/downloads/movies-radarr
- UN_RADARR_0_PROTOCOLS=torrent
- UN_RADARR_0_TIMEOUT=10s
- UN_RADARR_0_DELETE_ORIG=false
- UN_RADARR_0_DELETE_DELAY=5m
# Lidarr Config
- UN_LIDARR_0_URL=http://192.168.0.178:8686
- UN_LIDARR_0_API_KEY=XXX
- UN_LIDARR_0_PATHS_0=/downloads/music-lidarr
- UN_LIDARR_0_PROTOCOLS=torrent
- UN_LIDARR_0_TIMEOUT=10s
- UN_LIDARR_0_DELETE_ORIG=false
- UN_LIDARR_0_DELETE_DELAY=5m
# Readarr Config
- UN_READARR_0_URL=http://192.168.0.178:8787
- UN_READARR_0_API_KEY=XXX
- UN_READARR_0_PATHS_0=/downloads/books-readarr
- UN_READARR_0_PROTOCOLS=torrent
- UN_READARR_0_TIMEOUT=10s
- UN_READARR_0_DELETE_ORIG=false
- UN_READARR_0_DELETE_DELAY=5m
# Whisparr Config
- UN_WHISPARR_0_URL=http://192.168.0.178:6969
- UN_WHISPARR_0_API_KEY=XXX
- UN_WHISPARR_0_PATHS_0=/downloads/xxx-whisparr
- UN_WHISPARR_0_PROTOCOLS=torrent
- UN_WHISPARR_0_TIMEOUT=10s
- UN_WHISPARR_0_DELETE_ORIG=false
- UN_WHISPARR_0_DELETE_DELAY=5m
# Folder Config
- UN_FOLDER_0_PATH=/downloads/Packs
- UN_FOLDER_0_EXTRACT_PATH=
- UN_FOLDER_0_DELETE_AFTER=10m
- UN_FOLDER_0_DELETE_ORIGINAL=false
- UN_FOLDER_0_DELETE_FILES=false
- UN_FOLDER_0_MOVE_BACK=false
volumes:
- /volume1/docker/unpackerr:/config
- /volume1/downloads:/downloads
image: cr.hotio.dev/hotio/unpackerr:latest

from unpackerr.

Simpuhl avatar Simpuhl commented on June 13, 2024

I notice it puts everything im the conf file, but it ignores Whisparr, and then looking at the logs it seems like folder config is working but it doesn't write that to the conf either... For some reason Unpackarr doesn't show up in Portainer for me but heres the log screenshot:

image

from unpackerr.

davidnewhall avatar davidnewhall commented on June 13, 2024

cr.hotio.dev stopped working a long time ago.

I copied your compose, replaced XXX with fake api keys, removed the volumes, and changes the image to golift/unpackerr. It did this.
Screen Shot 2024-02-10 at 12 30 11 AM

I cannot reproduce what you're reporting.

name: unpackerr
services:
    unpackerr:
        container_name: unpackerr
        network_mode: bridge
        restart: unless-stopped
        stop_grace_period: 300s
        environment:
             - PUID=XXXX
             - PGID=XXX
             - UMASK=002
             - TZ=America/Los_Angeles
      # General config
             - UN_DEBUG=false
             - UN_LOG_FILE=
             - UN_LOG_FILES=10
             - UN_LOG_FILE_MB=10
             - UN_INTERVAL=2m
             - UN_START_DELAY=1m
             - UN_RETRY_DELAY=5m
             - UN_MAX_RETRIES=3
             - UN_PARALLEL=1
             - UN_FILE_MODE=0644
             - UN_DIR_MODE=0755
      # Sonarr Config
             - UN_SONARR_0_URL=http://192.168.0.178:8989
             - UN_SONARR_0_API_KEY=12345678901234567891212345678901
             - UN_SONARR_0_PATHS_0=/downloads/tv-sonarr
             - UN_SONARR_0_PROTOCOLS=torrent
             - UN_SONARR_0_TIMEOUT=10s
             - UN_SONARR_0_DELETE_ORIG=false
             - UN_SONARR_0_DELETE_DELAY=5m
      # Radarr Config
             - UN_RADARR_0_URL=http://192.168.0.178:7878
             - UN_RADARR_0_API_KEY=12345678901234567891212345678901
             - UN_RADARR_0_PATHS_0=/downloads/movies-radarr
             - UN_RADARR_0_PROTOCOLS=torrent
             - UN_RADARR_0_TIMEOUT=10s
             - UN_RADARR_0_DELETE_ORIG=false
             - UN_RADARR_0_DELETE_DELAY=5m
      # Lidarr Config
             - UN_LIDARR_0_URL=http://192.168.0.178:8686
             - UN_LIDARR_0_API_KEY=12345678901234567891234567890121
             - UN_LIDARR_0_PATHS_0=/downloads/music-lidarr
             - UN_LIDARR_0_PROTOCOLS=torrent
             - UN_LIDARR_0_TIMEOUT=10s
             - UN_LIDARR_0_DELETE_ORIG=false
             - UN_LIDARR_0_DELETE_DELAY=5m
      # Readarr Config
             - UN_READARR_0_URL=http://192.168.0.178:8787
             - UN_READARR_0_API_KEY=12345678901234567891212345678901
             - UN_READARR_0_PATHS_0=/downloads/books-readarr
             - UN_READARR_0_PROTOCOLS=torrent
             - UN_READARR_0_TIMEOUT=10s
             - UN_READARR_0_DELETE_ORIG=false
             - UN_READARR_0_DELETE_DELAY=5m
      # Whisparr Config
             - UN_WHISPARR_0_URL=http://192.168.0.178:6969
             - UN_WHISPARR_0_API_KEY=12345678901234567891212345678901
             - UN_WHISPARR_0_PATHS_0=/downloads/xxx-whisparr
             - UN_WHISPARR_0_PROTOCOLS=torrent
             - UN_WHISPARR_0_TIMEOUT=10s
             - UN_WHISPARR_0_DELETE_ORIG=false
             - UN_WHISPARR_0_DELETE_DELAY=5m
      # Folder Config
             - UN_FOLDER_0_PATH=/downloads/Packs
             - UN_FOLDER_0_EXTRACT_PATH=
             - UN_FOLDER_0_DELETE_AFTER=10m
             - UN_FOLDER_0_DELETE_ORIGINAL=false
             - UN_FOLDER_0_DELETE_FILES=false
             - UN_FOLDER_0_MOVE_BACK=false
        image: golift/unpackerr

from unpackerr.

Simpuhl avatar Simpuhl commented on June 13, 2024

Interesting... I'll try changing the image. Are they not the same? I'm out of town until Tuesday but I'll 100% come back here and post if successful or not on Tuesday or weds morning. Appreciate all your help

from unpackerr.

davidnewhall avatar davidnewhall commented on June 13, 2024

Are they not the same?

One exists and contains the latest release. One does not exist. They are not the same.

from unpackerr.

davidnewhall avatar davidnewhall commented on June 13, 2024

How'd it go?

from unpackerr.

Simpuhl avatar Simpuhl commented on June 13, 2024

My bad, I forgot. let me try it now

from unpackerr.

Simpuhl avatar Simpuhl commented on June 13, 2024

How'd it go?

Yup it works with golift/unpackerr

Not sure why or how i had that other image...

from unpackerr.

davidnewhall avatar davidnewhall commented on June 13, 2024

There is 1 major difference between the two images. The golift images does not use these:

environment:
  - PUID=XXXX
  - PGID=XXX

Instead you need to add user: XXXX:XXX to the compose.

from unpackerr.

Simpuhl avatar Simpuhl commented on June 13, 2024

is it user: or user=

from unpackerr.

davidnewhall avatar davidnewhall commented on June 13, 2024

yaml syntax uses : and it's a docker setting not an environment variable. This is all documented.

from unpackerr.

Simpuhl avatar Simpuhl commented on June 13, 2024

Any idea why unpackerr doesn't show up in portainer ?

from unpackerr.

Simpuhl avatar Simpuhl commented on June 13, 2024

NM I am stupid, i realized I have two pages of containers lol

from unpackerr.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.