mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-06-12 23:29:36 -05:00
[HELP] What should be in ignored.txt #135
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Neobond on GitHub.
Before submitting a help request, I have:
How can we help?
Sorry for being completely thick.
I have setup my docker-compose with an additional folder in /docker/cleanupeer/files/blacklist.txt and linked the path in Sonarr and Radarr to files/blacklist.txt
But when building the project I get
Now, I know I can just create an empty ignored.txt file, but what is supposed to be in it?
I could not find guidance on this one file in the Setup instructions.
Cheers in advance!
@Neobond commented on GitHub:
Thanks! I thought using blacklist.txt would be enough.
@Neobond commented on GitHub:
Yes, thanks! I had a bunch of failures with .lnk files so I hope this solves it :D
@Flaminel commented on GitHub:
No worries!
@Flaminel commented on GitHub:
The Docker compose from the docs is just an example that includes all settings and should be customized depending on your needs.
The
ignored.txtfile is used forQUEUECLEANER__IGNORED_DOWNLOADS_PATH,CONTENTBLOCKER__IGNORED_DOWNLOADS_PATHandDOWNLOADCLEANER__IGNORED_DOWNLOADS_PATHvariables that are documented here.If you don't want to ignore certain downloads from processing, you can either unset those variables and remove the volume or just create an empty file to mount.
@Flaminel commented on GitHub:
Did you succeed in setting it up?
@Flaminel commented on GitHub:
Bridge is what I was referring to. If they are in a bridged network, then you still can't access a container from another container with
localhost. You can access them through their service name or their Docker IP.Unless maybe your setup is somehow different? Do you access qBittorrent with
localhostfrom the arrs?@Neobond commented on GitHub:
Hi, thanks for your patience with me!
In my arrs compose, they are set to
synobridge. I am not smart enough to know what that actually means (internal docker network?), but host mode is not mentioned in that compose file.@Neobond commented on GitHub:
Quick follow up. I checked the log of cleanuperr and there were a bunch of messages about http://localhost:7878 and http://localhost:8989 "instance not found" I changed it to the IP address, and the log now seems to show the appropriate access!
Edit: thinking about it, I suppose I could put cleanuperr in the same docker compose as the arrs and qBittorrent, and then http://localhost would work, am I correct in thinking this?
@Neobond commented on GitHub:
Ah yeah, I put the LAN addresses in all the arrs and cleanuperr because localhost:port didn't work, would setting the docker IPs be more efficient (the 127.x.x.x address)?
@Flaminel commented on GitHub:
Sorry, was there a question before the edit?
It depends. Did you set the network mode to
hostfor them? If that's the case, then yes,localhostwill work. If you have an internal Docker network, you should access the services through their service name set in the compose file.@Flaminel commented on GitHub:
Thanks for letting me know!
The blocklists are updated only when starting the app. I might improve this in the future by updating them on a regular basis, but for now it does not make any difference if it's self hosted or not.
@Flaminel commented on GitHub:
127.x.x.xis still localhost, so you're probably referring to some other IP range. Docker IPs are not permanent so they can change after restarting. Best way is to use the service name like I did in this test file: https://github.com/flmorg/cleanuperr/blob/main/code/test/docker-compose.yml@Neobond commented on GitHub:
Just wanted to followup and say that it is working as intended. A fake file with .lnk was identified (via locally stored Blacklist.txt) and cleaned up with cleanuperr, thanks!
I saw in the documentation that there was an example to link to a http Blacklist.txt.. but I saved it locally, I just wanted to ask if that file updates enough to warrant linking the external http address instead self hosting it locally?