Page 1 of 1

rednoah/filebot:watcher and license file

Posted: 28 Sep 2018, 03:59
by fullofstars
How do you get the license file into the filebot:watcher docker image? Can the license be mounted somewhere?

Re: rednoah/filebot:watcher and license file

Posted: 28 Sep 2018, 04:05
by rednoah
You'll have to call filebot --license /path/to/license from within the docker once. The /path/to/license has to be accessible from within the docker contains as well.

e.g.

Code: Select all

docker run -it -v $PWD:/volume1 -v data:/data rednoah/filebot --license /volume1/P1234567.psm
The license will then be stored in -v data:/data which is the persistent app data folder common to all FileBot containers, and thus it'll be valid for the filebot watcher container as well.

Re: rednoah/filebot:watcher and license file

Posted: 29 Sep 2018, 05:14
by fullofstars
That worked. Thanks!

Re: rednoah/filebot:watcher and license file

Posted: 16 Nov 2022, 03:26
by rednoah