-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running in not daemon mode #259
Comments
Yes would be interesting. Changing the way pm2 launch itself would be a quite big work. I know it's not very elegant but could it solve this problem ? |
It would solve the problem, +1 for that change. |
+1 For this - docker is gaining traction now |
Want to follow-up on that.. So, |
How do I tell pm2 to also send stdout/stderr of its managed processes to the console? currently when I start |
you can do
We just fixed the --no-daemon command to also display processes output f4569cb |
excellent, thank you. |
Hello |
False alarm sorry about that, no problem |
Just incase somebody googles this thread. |
|
I know it may sound a bit silly, but can I run pm2 in not daemon mode?
Let me explain why. I'm working on pm2 plugin for dokku, with dokku each process is started in docker container.
The problem is then I run,
pm2 start processes.json
it immediately quits, so docker assumes that it's done and stops.Is that possible to have option like,
pm2 start --no-daemon processes.json
, so pm2 continues to run?The text was updated successfully, but these errors were encountered: