Skip to content

Commit

Permalink
Merge pull request #13887 from TheRealHaoLiu/no-make-run-stuff-in-doc…
Browse files Browse the repository at this point in the history
…ker-compose

Stop using make to start awx processes part 1
  • Loading branch information
TheRealHaoLiu authored Apr 19, 2023
2 parents 33f1c35 + 177f8cb commit 6a1ec0d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tools/docker-compose/supervisor.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,23 @@ minfds = 4096
nodaemon=true

[program:awx-dispatcher]
command = make dispatcher
command = awx-manage run_dispatcher
autorestart = true
stopasgroup=true
killasgroup=true
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
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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 6a1ec0d

Please sign in to comment.