My docker command is:
docker run -it \
--name=filebot \
-e PGID=1000 -e PUID=1000 \
--restart=unless-stopped \
-v /opt/filebot:/data \
-v /mnt:/mnt \
-v /etc/localtime:/etc/localtime:ro \
-p 5452:5452 \
rednoah/filebot:node
FileBot also correctly wrote the license.txt file to /opt/filebot ...
Search found 3 matches
- 28 Aug 2023, 16:21
- Forum: Ubuntu & Desktop Linux
- Topic: FileBot node doesn't see valid license
- Replies: 3
- Views: 6771
- 28 Aug 2023, 15:10
- Forum: Ubuntu & Desktop Linux
- Topic: FileBot node doesn't see valid license
- Replies: 3
- Views: 6771
FileBot node doesn't see valid license
I recently got the Filebot node docker running on Ubuntu 20.04. I installed my license key and got the following confirmation:
Activate License [P52XXXXXX] on [Mon Aug 28 14:49:59 GMT 2023]
Write [FileBot License P52304123 (Valid-Until: 2024-08-22)] to [/data/license.txt]
FileBot License P52XXXXXX ...
Activate License [P52XXXXXX] on [Mon Aug 28 14:49:59 GMT 2023]
Write [FileBot License P52304123 (Valid-Until: 2024-08-22)] to [/data/license.txt]
FileBot License P52XXXXXX ...
- 18 Dec 2018, 17:49
- Forum: Feature Requests and Bug Reports
- Topic: Feature Request: Find and Remove Duplicates without using xattr
- Replies: 16
- Views: 8907
Feature Request: Find and Remove Duplicates without using xattr
Would it be possible to have a script that would handle duplicates without using xattr? Xattr isn't supported by tools like rclone or GDFS so there isn't currently a good way to handle duplicates on mounted cloud storage. I think scoring file attributes similar to the way this python script is ideal ...