Gitlab CI - pass docker run parameter into Service container

Hi there

I need to run a specific docker container from a third party as a “service” container in my CI …However, this container has to be started with a --tty flag

It seems that gitlab CI doesnt allow us to pass in any ‘docker run’ parameters and only allows us to define an image itself.

the ‘–tty’ flag is unfortunately not something that can be set during CMD/ENTRYPOINT and that seems to the only thing that is configurable for service containers

Is there a way I can get my service container to be started with a --tty flag? as it needs it to run

Thanks