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.
			
			
									
						
										
						Changes to docker recently?
Re: Changes to docker recently?
Pretty sure the docker image wasn't updated in the last 6+ months.
			
			
									
						
										
						Re: Changes to docker recently?
Yeah, that's what I thought.  Thanks, though.
			
			
									
						
										
						Re: Changes to docker recently?
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?
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)
			
			
									
						
										
						I have to use the data volume because I delete the container all the time again. (--rm)
Re: Changes to docker recently?
That should work. 
  What does the console output say when it doesn't work?
 What does the console output say when it doesn't work?
			
			
									
						
										
						 What does the console output say when it doesn't work?
 What does the console output say when it doesn't work?Re: Changes to docker recently?
Just a simple: 
My "solution" was installing the native .deb package and not using docker any more.
			
			
									
						
										
						Code: Select all
No such file: args.txtMy "solution" was installing the native .deb package and not using docker any more.

Re: Changes to docker recently?
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.
  Use absolute paths, e.g. /data/args.txt
 Use absolute paths, e.g. /data/args.txt
			
			
									
						
										
						 Use absolute paths, e.g. /data/args.txt
 Use absolute paths, e.g. /data/args.txt