I want to run the tika server docker image in openshift. This works fine out of the box but as soon as i run other services at the same time i need a context path to determine which service should be addressed in the url.
https://my-openshift-instance.com/my-first-service
<- this is a different service working
https://my-openshift-instance.com/tika-server
<- this is what i need
In Spring Boot applications you just set something like server.servlet.context-path=/my-service-name
and it is done. But unfortunately tika server is not based on Spring Boot.
I searched in the official tika-server docs, tika-docker repo as well as the normal tika repo but nowhere was anything documented about context paths.