mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
28 lines
708 B
Plaintext
28 lines
708 B
Plaintext
|
[supervisord]
|
||
|
nodaemon=true
|
||
|
|
||
|
[program:apache]
|
||
|
; https://advancedweb.hu/2018/07/03/supervisor_docker/
|
||
|
command=apache2ctl -DFOREGROUND
|
||
|
killasgroup=true
|
||
|
stopasgroup=true
|
||
|
stdout_logfile=/dev/stdout
|
||
|
stdout_logfile_maxbytes=0
|
||
|
stderr_logfile=/dev/stderr
|
||
|
stderr_logfile_maxbytes=0
|
||
|
|
||
|
[program:run_schedule]
|
||
|
; Simply run the Laravel command scheduler every minute
|
||
|
command=/bin/bash -c "while true; do /var/www/html/artisan schedule:run; sleep 1m; done"
|
||
|
user=docker
|
||
|
stdout_logfile=/dev/stdout
|
||
|
stdout_logfile_maxbytes=0
|
||
|
stderr_logfile=/dev/stderr
|
||
|
stderr_logfile_maxbytes=0
|
||
|
|
||
|
|
||
|
; https://stackoverflow.com/a/37527488/119527
|
||
|
[eventlistener:exit_on_any_fatal]
|
||
|
command=supervisor-exit-event-listener
|
||
|
events=PROCESS_STATE_FATAL
|