baseimage-tutorial-framework/supervisord.conf

24 lines
506 B
Plaintext
Raw Normal View History

2017-11-21 12:19:37 +00:00
[supervisord]
user=user
logfile = /tmp/supervisord.log
loglevel = DEBUG
pidfile = /tmp/supervisord.pid
[unix_http_server]
file=/tmp/supervisor.sock
[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
[supervisorctl]
serverurl=unix:///tmp/supervisor.sock
[program:app]
directory=%(ENV_TFW_APP_DIR)s
command=env python app.py
[program:component_example]
directory=%(ENV_TFW_COMPONENTS_DIR)s
command=env python component_example.py
autorestart=true