Can ray serve run within one container

A beginner question about ray serve. Can it run within one container or one pod? Medium
Deploying Ray Serve — Ray v2.0.0.dev0

Can the http server and backend run within one container? If so, is there any example? here is my cu

Thanks.

Hey,

there is no explicit example for this in the docs, but you can just use Ray locally by calling ray.init() without arguments. If you do that in a Python script inside of a container, all the relevant proccesses will be started locally in that container!

– Philipp.

Thanks. It can work.