From adfdfcdd0a3f121eca95f9d6d2b380804c1d40cd Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Thu, 9 May 2019 13:45:29 -0400 Subject: [PATCH] use make targets for dev supervisor commands --- tools/docker-compose/supervisor.conf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/docker-compose/supervisor.conf b/tools/docker-compose/supervisor.conf index 6a6b71151c..a42bef7e5d 100644 --- a/tools/docker-compose/supervisor.conf +++ b/tools/docker-compose/supervisor.conf @@ -4,7 +4,7 @@ minfds = 4096 nodaemon=true [program:awx-dispatcher] -command = awx-manage run_dispatcher +command = make dispatcher autostart = true autorestart = true redirect_stderr=true @@ -12,7 +12,7 @@ stdout_logfile=/dev/fd/1 stdout_logfile_maxbytes=0 [program:awx-receiver] -command = python manage.py run_callback_receiver +command = make receiver autostart = true autorestart = true redirect_stderr=true @@ -20,7 +20,7 @@ stdout_logfile=/dev/fd/1 stdout_logfile_maxbytes=0 [program:awx-runworker] -command = python manage.py runworker +command = make runworker autostart = true autorestart = true redirect_stderr=true @@ -40,7 +40,7 @@ stdout_logfile=/dev/fd/1 stdout_logfile_maxbytes=0 [program:awx-daphne] -command = daphne -b 0.0.0.0 -p 8051 awx.asgi:channel_layer +command = make daphne autostart = true autorestart = true redirect_stderr=true @@ -48,7 +48,7 @@ stdout_logfile=/dev/fd/1 stdout_logfile_maxbytes=0 [program:awx-nginx] -command = nginx -g "daemon off;" +command = make nginx autostart = true autorestart = true redirect_stderr=true