Expose temporalite service to 0.0.0.0

I tried temporalite and found the service can only be accessed on localhost ,while not a machine ip.
Why we choose this design? and can we expose it to 0.0.0.0 network?
What’s more, how can I expose this service if I want to put it into a docker container?

can we expose it to 0.0.0.0 network

If you build the image yourself you should be able to set the ip in Dockerfile, see here.

I want to put it into a docker container

Just build the image yourself and if you need sample docker compose see here.

@tihomir thanks for the quick reply!