-
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docker image fails to start, endlessly restarts #101
Comments
Can you please attach looks? Or is nothing at all working? Any error messages? Thanks |
Sorry, but this is all of the info I have to give. The container doesn't stay active enough to generate a log at all |
For the sake of testing, please try the following:
|
It start/stopped, then pumped this out: 14/08/2024 09:51 pm | NameError: name 'CONFIG' is not defined | stderr |
Ok, so now add:
Run it again, then rename the config file generated and change any values required within it |
Have you managed to get anywhere? @LazerDickMcCheese |
Long story short, changed hardware and had to do a full setup again so I was out of commission for a few days. I just set this up again, I'm getting many errors about "parser.py" Do you want the logs? |
Hi, yes. Send trace logs (adjust log level in configs) and config please, ideally in a zip |
[config.zip] Even Better TOML - https://marketplace.visualstudio.com/items?itemName=tamasfe.even-better-toml |
It's been a while since I looked at those files, I just realized they have my APIs and passwords in them. Would you mind deleting the ones you uploaded as well? So we have progress, qBitrr isn't stuck restarting. It's currently failing to connect to my Radarr and Sonarr instances, but those are the only errors. The trace logs show some form of this: The instances are up and available however, the IPs listed are correct. |
Kindly send new logs so I can take a look please |
Thank you for your help |
I'll update the description but, add |
I believe that fixed it! Strange, qbit works without http:// in front of the address so I would've never thought to try that. Thank you again for your help. |
qbitrr added tags to my qbit, so I assumed it was working. Fast forward a few days and nothing has been tagged (some of them should have been due to the config settings). So I stopped the container, checked the config.toml, and restarted the container. It's back to restarting continuously. As a side note, qbitrr says it doesn't have permissions to its config folder if I set the YAML to the UID I usually use for docker containers despite having read/write permissions. |
If you're on a linux system, I suggest first trying to run |
I entered the command, rebuilt the container, and it's still giving the "AttributeError: 'String' object has no attribute 'get'" error in the log and restart-looping |
I'll need logs again please |
When I start the container, only 2 of the logs write. "Category exists without save path" The arrs have been working just fine, so I don't know which path it's talking about. |
Can you run Also check docker logs by running |
Ok, I'll work on fixing this, I see the problem now. In the meantime send over your config, I'll edit it slightly and send it back so you can have a working config |
Thank you for your help, you've been very kind. Did I break something? I'm lost here |
config.zip |
It's definitely working now! About 600 stalled downloads corrected themselves, and my NAS has been purring ever since. On behalf of everyone using my server, thank you for your help |
Very happy to hear, though I'm leaving this open to remind myself to check the trackers issue you had |
What's wrong with the following docker compose? I'm pretty new to docker, but I thought this was going to be a simple set up.
version: "3"
services:
qbitrr:
image: feramance/qbitrr:latest
user: 1000:1000 # Required to ensure the container is run as the user who has perms to see the 2 mount points and the ability to write to the CompletedDownloadFolder mount
tty: true # Ensure the output of docker-compose logs qBitrr are properly colored.
restart: unless-stopped
environment:
- TZ=America/New_York
volumes:
- /etc/localtime:/etc/localtime:ro
- /volume1/docker/qbitrr/config:/config # Config folder for qBitrr
- /volume1/docker/qbittorrent/torrents/completed:/completed_downloads:rw
logging:
driver: "json-file"
options:
max-size: "50m"
max-file: 3
The text was updated successfully, but these errors were encountered: