Search found 9 matches
- 15 Jan 2023, 08:03
- Forum: Ubuntu & Desktop Linux
- Topic: How to Force FileBot to update Sonarr/Radarr
- Replies: 8
- Views: 17809
Re: How to Force FileBot to update Sonarr/Radarr
Late to the game here, but I use this script: https://github.com/JourneyDeprecated/filebot/blob/master/Update_Sonarr_Radarr.groovy // TVDB/TMDB ID def id = id as int // Video Type def type = type // Sonarr API Configuration if (type =~ /Episode/) { def url = new URL('http://localhost:8989') def ...
- 09 Oct 2021, 16:11
- Forum: Ubuntu & Desktop Linux
- Topic: Docker Permission/User Issues with Newest Update
- Replies: 3
- Views: 9893
Re: Docker Permission/User Issues with Newest Update
Running this now as PUID=0 and PGID=100 without issue. Docker on Synology was creating the PUSER and PGROUP variables automatically and I think that was causing the permission issues. Now that you changed something in the image, they are no longer creating an issue with the default values of ...
- 09 Oct 2021, 02:59
- Forum: Ubuntu & Desktop Linux
- Topic: Docker Permission/User Issues with Newest Update
- Replies: 3
- Views: 9893
Re: Docker Permission/User Issues with Newest Update
Got this working with some config changes until rednoah can fix the issue or update the documentation: https://i.imgur.com/FcGeX76.png PUID/PGID are for my normal Docker container user with r/w permissions. PUSER=root and PGROUP=users gets rid of the permissions errors. Filebot now creates a folder ...
- 08 Oct 2021, 19:33
- Forum: Ubuntu & Desktop Linux
- Topic: Docker Permission/User Issues with Newest Update
- Replies: 3
- Views: 9893
Docker Permission/User Issues with Newest Update
The newest Docker update appears to have introduced some kind of user and/or permissions issues. I have been using the same docker container script for a long time now without issue across several versions. The exception was the last support issue I posted where you made a copy/paste error in the ...
- 11 Jun 2021, 06:40
- Forum: Ubuntu & Desktop Linux
- Topic: Docker filebot-watcher container stopped unexpectedly (recent update issue?)
- Replies: 5
- Views: 14911
Re: Docker filebot-watcher container stopped unexpectedly (recent update issue?)
Confirmed working. We all make copy & paste errors into Production from time to time. 
Any way we could get a tag "stable" for the previous version in Docker in case you go on vacation or get hit by a bus right after an update?
Any way we could get a tag "stable" for the previous version in Docker in case you go on vacation or get hit by a bus right after an update?
- 11 Jun 2021, 06:08
- Forum: Ubuntu & Desktop Linux
- Topic: Docker filebot-watcher container stopped unexpectedly (recent update issue?)
- Replies: 5
- Views: 14911
Re: Docker filebot-watcher container stopped unexpectedly (recent update issue?)
That is the input directory that is being monitored.
- 11 Jun 2021, 04:58
- Forum: Ubuntu & Desktop Linux
- Topic: Docker filebot-watcher container stopped unexpectedly (recent update issue?)
- Replies: 5
- Views: 14911
Docker filebot-watcher container stopped unexpectedly (recent update issue?)
I use Watchtower in Docker to automatically update my containers. It appears after the most recent update, filebot-watcher isn't actually doing anything. Based on the Docker logs, it looks like the container is starting up, finishing its initialization script and exiting without actually executing ...
- 07 Dec 2019, 04:40
- Forum: Feature Requests and Bug Reports
- Topic: Request: rednoah/filebot-watcher move filebot-watcher to data directory
- Replies: 2
- Views: 3094
Re: Request: rednoah/filebot-watcher move filebot-watcher to data directory
Awesome. I will give that a try.
- 06 Dec 2019, 21:50
- Forum: Feature Requests and Bug Reports
- Topic: Request: rednoah/filebot-watcher move filebot-watcher to data directory
- Replies: 2
- Views: 3094
Request: rednoah/filebot-watcher move filebot-watcher to data directory
Can the filebot-watcher script be moved to the /data directory on the filebot-watcher Docker container or another mount? This would allow users to make changes to the script to call other commands/scripts if needed. It would also allow users to call a highly custom amc script with tons of variables ...