Docker run with --webapps, what about tini?

The GitHub readme says the following:

Enable only WebApps:

docker run camunda/camunda-bpm-platform:run ./camunda.sh --webapps

However the entry point of the container is

ENTRYPOINT [“/sbin/tini”, “–”]
CMD [“./camunda.sh”]

So does this mean that the custom run command is not going to be running under the tini PID? Should it be the following?

docker run camunda/camunda-bpm-platform:run /sbin/tini – ./camunda.sh --webapps

And if I wanted to run the container in a Kubernetes Pod with webapps only, would I just use the args?

args: [“./camunda.sh”, “–webapps”]