2
0
Fork 0
textout/docker/supervisord.conf

14 lines
304 B
Plaintext

[supervisord]
nodaemon = true
logfile = /dev/null
logfile_maxbytes = 0
[program:nginx]
command = /usr/sbin/nginx
[program:textoutpc]
command = /opt/app/venv/bin/python -m gunicorn textoutpc.demo:app -w 1 --bind 0.0.0.0:3000
stdout_logfile = /dev/fd/1
stdout_logfile_maxbytes = 0
redirect_stderr = true