Page 1 of 1

Changes to docker recently?

Posted: 26 Mar 2019, 14:56
by whocares
Hi,

since today the docker image does not find the file for my complex arguments. Did something change? 2 days ago everything was working normally.

Re: Changes to docker recently?

Posted: 26 Mar 2019, 15:02
by rednoah
Pretty sure the docker image wasn't updated in the last 6+ months.

Re: Changes to docker recently?

Posted: 26 Mar 2019, 15:06
by whocares
Yeah, that's what I thought. Thanks, though.

Re: Changes to docker recently?

Posted: 26 Mar 2019, 15:19
by rednoah
If you're using @files don't forget that FileBot is running inside the container, and so file paths need to make sense from within the container.

Re: Changes to docker recently?

Posted: 26 Mar 2019, 22:12
by whocares
I used the data volume for the storage of the @file and it worked all the time. Since I upgraded to 4.8.2 it changed the directory to data/.filebot/ but there is a args.txt in there and in the old directory.

I have to use the data volume because I delete the container all the time again. (--rm)

Re: Changes to docker recently?

Posted: 27 Mar 2019, 06:11
by rednoah
That should work.

:?: What does the console output say when it doesn't work?

Re: Changes to docker recently?

Posted: 27 Mar 2019, 14:09
by whocares
Just a simple:

Code: Select all

No such file: args.txt

My "solution" was installing the native .deb package and not using docker any more. ;)

Re: Changes to docker recently?

Posted: 27 Mar 2019, 19:40
by rednoah
args.txt is a relative path, which means it may or may not refer to the file you want depending on the current working directory.

:idea: Use absolute paths, e.g. /data/args.txt