diff options
Diffstat (limited to 'docker/supervisord.conf')
-rw-r--r-- | docker/supervisord.conf | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/docker/supervisord.conf b/docker/supervisord.conf new file mode 100644 index 000000000..33cba0c14 --- /dev/null +++ b/docker/supervisord.conf @@ -0,0 +1,23 @@ +[supervisord] +nodaemon=false + +[program:geth] +priority=30 +directory=/ +command=geth --rpc +user=root +autostart=true +autorestart=true +startsecs=10 +stopsignal=QUIT +stdout_logfile=/var/log/geth.log +stderr_logfile=/var/log/geth.err + +[unix_http_server] +file=%(here)s/supervisor.sock + +[supervisorctl] +serverurl=unix://%(here)s/supervisor.sock + +[rpcinterface:supervisor] +supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
\ No newline at end of file |