What does meteor up (mup) use to keep the meteor app running forever?

Hello,

Does mup use forever or pm2?

Thanks

It uses neither.

MUP launches your app in a docker container. That container will die if the meteor app exits for any reason. MUP tells docker to restart any containers that close, so docker monitors the status of each container and will re-start it if it dies

4 Likes