Filebot Docker Thread

Any questions? Need some help?
Post Reply
SLiX
Posts: 8
Joined: 30 Mar 2014, 18:16

Filebot Docker Thread

Post by SLiX »

Hi, just started using filebot for docker, thanks for that!
Found no thread about general docker discussion, now there is one ;)


I'm struggling with the correct passing of eg the "seriesFormat" parameter.

I use it like this:

Code: Select all

--seriesFormat "../output/shows/{n}/Season {s.pad(2)}/{n} - {sxe} - {t}"
At execution, I'll get an error saying:

Code: Select all

"--seriesFormat" is not a valid option
Do you have a clue, what my problem is about?
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Filebot Docker Thread

Post by rednoah »

Looks like you didn't read the manual: viewtopic.php?f=4&t=215

e.g.

Code: Select all

--def movieFormat="M:/Movies/{ny}/{fn}" seriesFormat="S:/TV/{n}/{fn}" animeFormat="T:/Anime/{n}/{fn}" musicFormat="N:/Music/{n}/{fn}"
:idea: Please read the FAQ and How to Request Help.
SLiX
Posts: 8
Joined: 30 Mar 2014, 18:16

Re: Filebot Docker Thread

Post by SLiX »

I have to admit, I read the docs, but I did not get it. Tried it without "=" in between :oops:
Thank you for your fast response, works very good
christianuhlmann
Posts: 1
Joined: 20 Nov 2018, 08:03

Re: Filebot Docker Thread

Post by christianuhlmann »

hi,

i am searching for running docker as compose with passing the --def arguments.
has anyone get this working?

here is my docker-compose for filebot:

Code: Select all

version: '2'
services:
  filebot-node:
    image: rednoah/filebot:node
    restart: unless-stopped
    ports:
      - 5452:5452
    command: --def movieFormat="{plex}"
    volumes:
      - <dir to input files>:/volume1
      - <dir to output files>:/data
regards Christian
Post Reply