diff options
author | Hao Liu <haoli@redhat.com> | 2023-04-19 20:51:38 +0200 |
---|---|---|
committer | Hao Liu <haoli@redhat.com> | 2023-04-19 20:51:38 +0200 |
commit | 177f8cb7b21b0e58e7e7c36418b772fe5b09b7ef (patch) | |
tree | a46d03b9f07e068b617fe0922423ca203d1a0737 /tools/docker-compose | |
parent | Merge pull request #13658 from TheRealHaoLiu/different-dockerfile (diff) | |
download | awx-177f8cb7b21b0e58e7e7c36418b772fe5b09b7ef.tar.xz awx-177f8cb7b21b0e58e7e7c36418b772fe5b09b7ef.zip |
Stop using make to start processes
part 1...
we dont need to run awx processes through make
because awx-manage uses awx-python which is already activating the correct venv
Diffstat (limited to 'tools/docker-compose')
-rw-r--r-- | tools/docker-compose/supervisor.conf | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/docker-compose/supervisor.conf b/tools/docker-compose/supervisor.conf index 341fe9fab7..704e4d2dcd 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 = make dispatcher +command = awx-manage run_dispatcher autorestart = true stopasgroup=true killasgroup=true @@ -12,7 +12,7 @@ stdout_events_enabled = true stderr_events_enabled = true [program:awx-receiver] -command = make receiver +command = awx-manage run_callback_receiver autorestart = true stopasgroup=true killasgroup=true @@ -20,7 +20,7 @@ stdout_events_enabled = true stderr_events_enabled = true [program:awx-wsrelay] -command = make run-wsrelay +command = awx-manage run_wsrelay autorestart = true autorestart = true stopasgroup=true @@ -29,7 +29,7 @@ stdout_events_enabled = true stderr_events_enabled = true [program:awx-heartbeet] -command = make run-heartbeet +command = awx-manage run_heartbeet autorestart = true autorestart = true stopasgroup=true @@ -38,7 +38,7 @@ stdout_events_enabled = true stderr_events_enabled = true [program:awx-rsyslog-configurer] -command = make run-rsyslog-configurer +command = awx-manage run_rsyslog_configurer autorestart = true stopasgroup=true killasgroup=true @@ -48,7 +48,7 @@ stderr_logfile=/dev/stderr stderr_logfile_maxbytes=0 [program:awx-cache-clear] -command = make run-cache-clear +command = awx-manage run_cache_clear autorestart = true stopasgroup=true killasgroup=true |