-
Notifications
You must be signed in to change notification settings - Fork 33
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
Add supervisor to Dockerfile for process management #322
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @muratugureminoglu ,
I've some questions and I need some improvements.
Please check and let me know if you have any question or correct me if my requests are not feasible.
@@ -92,4 +95,23 @@ RUN if [ "true" = "$InstallMediaPush" ]; then \ | |||
# Example usage: ./start.sh -e 60 | |||
|
|||
|
|||
##################### supervisor configuration ############################## | |||
#RUN apt-get update && apt-get install -y supervisor |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please run these options with a parameter. You can use --build-arg or runtime parameters which one fits better.
Please add some test deployment scripts to make sure that it's working as expected
#stdout_logfile=/dev/stdout\n\ | ||
#stderr_logfile=/dev/stderr' > /etc/supervisor/supervisord.conf | ||
# | ||
#ENTRYPOINT ["/usr/bin/supervisord", "-c", "/etc/supervisor/supervisord.conf"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it receiving the runtime parameters(-g, -s, etc.) as start.sh
?
#6896