[supervisord]
nodaemon=true
logfile=/dev/stdout
pidfile=/var/run/supervisord.pid
childlogdir=/var/log/supervisor
When I do this supervisor will crash because it cannot seek in /dev/stdout
How can I disable supervisord creating any log files in my docker container?
For the main supervisor, nodaemon
will cause logs to go to stdout
[supervisord]
nodaemon=true
logfile=/dev/null
logfile_maxbytes=0
Then send the logs for each managed process to the stdout file descriptor /dev/fd/1
[program:x]
command=echo test
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
redirect_stderr=true
Or if you prefer to keep stderr on a different stream:
[program:x]
command=echo test
stdout_logfile=/dev/fd/1
stdout_logfile_maxbytes=0
stderr_logfile=/dev/fd/2
stderr_logfile_maxbytes=0
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With