I've been struggling with this too. Outside of Docker, what I've been doing is using a bin/ directory and throwing everything in there and then starting tika-server: java -cp "bin/*" org.apache.tika.server.core.cli.TikaServerCli ...
If we moved to that model in our Docker container, then you could start with ours and then add your jar to the bin/ directory and be done. What do you think? Fellow devs, especially, Dave Meikle, what's the best way to handle adding custom jars to our Docker container? On Tue, Oct 25, 2022 at 8:45 PM Cihad Guzel <[email protected]> wrote: > Hi, > > I have prepared a custom parser plugin. I am running a tika server using > docker. Is there a way to introduce my parser plugin to the tika server? Or > should I create my own custom tika-server jar package? > > Regards, > Cihad Guzel >
