Page 1 of 1

Filebot Docker Thread

Posted: 19 Jul 2017, 17:56
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?

Re: Filebot Docker Thread

Posted: 19 Jul 2017, 19:09
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}"

Re: Filebot Docker Thread

Posted: 20 Jul 2017, 06:43
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

Re: Filebot Docker Thread

Posted: 20 Nov 2018, 08:08
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