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