parent
c29b2837c4
commit
bcaca0369f
@ -1,81 +0,0 @@
|
||||
[unix_http_server]
|
||||
file = /tmp/supervisord/supervisor.sock
|
||||
|
||||
[supervisorctl]
|
||||
serverurl = unix:///tmp/supervisord/supervisor.sock
|
||||
|
||||
|
||||
[rpcinterface:supervisor]
|
||||
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
|
||||
|
||||
[supervisord]
|
||||
nodaemon=true
|
||||
logfile=%(ENV_HOME)s/logs/supervisord.log ; supervisord log file
|
||||
logfile_maxbytes=50MB ; maximum size of logfile before rotation
|
||||
logfile_backups=10 ; number of backed up logfiles
|
||||
loglevel=debug ; info, debug, warn, trace
|
||||
pidfile=/tmp/supervisord/supervisord.pid ; pidfile location
|
||||
childlogdir=%(ENV_HOME)s/logs/ ; where child log files will live
|
||||
|
||||
[program:ssh-agent]
|
||||
command=bash -c "rm /tmp/ssh-agent.sock -f && /usr/bin/ssh-agent -d -a /tmp/ssh-agent.sock"
|
||||
priority=1
|
||||
autorestart=true
|
||||
|
||||
[program:rqworker_export]
|
||||
command=%(ENV_HOME)s/wait-for-it.sh %(ENV_CVAT_REDIS_HOST)s:6379 -t 0 -- bash -ic \
|
||||
"exec python3 %(ENV_HOME)s/manage.py rqworker -v 3 export"
|
||||
environment=SSH_AUTH_SOCK="/tmp/ssh-agent.sock"
|
||||
numprocs=2
|
||||
process_name=rqworker_default_%(process_num)s
|
||||
|
||||
command=%(ENV_HOME)s/wait-for-it.sh %(ENV_CVAT_REDIS_HOST)s:6379 -t 0 -- bash -ic \
|
||||
"exec python3 %(ENV_HOME)s/manage.py rqworker -v 3 import"
|
||||
environment=SSH_AUTH_SOCK="/tmp/ssh-agent.sock"
|
||||
numprocs=2
|
||||
process_name=rqworker_default_%(process_num)s
|
||||
|
||||
[program:rqworker_annotation]
|
||||
command=%(ENV_HOME)s/wait-for-it.sh %(ENV_CVAT_REDIS_HOST)s:6379 -t 0 -- bash -ic \
|
||||
"exec python3 %(ENV_HOME)s/manage.py rqworker -v 3 annotation"
|
||||
environment=SSH_AUTH_SOCK="/tmp/ssh-agent.sock"
|
||||
numprocs=1
|
||||
|
||||
[program:rqworker_webhooks]
|
||||
command=%(ENV_HOME)s/wait-for-it.sh %(ENV_CVAT_REDIS_HOST)s:6379 -t 0 -- bash -ic \
|
||||
"exec python3 %(ENV_HOME)s/manage.py rqworker -v 3 webhooks"
|
||||
environment=SSH_AUTH_SOCK="/tmp/ssh-agent.sock"
|
||||
numprocs=1
|
||||
|
||||
[program:git_status_updater]
|
||||
command=%(ENV_HOME)s/wait-for-it.sh %(ENV_CVAT_REDIS_HOST)s:6379 -t 0 -- bash -ic \
|
||||
"python3 ~/manage.py update_git_states"
|
||||
environment=SSH_AUTH_SOCK="/tmp/ssh-agent.sock"
|
||||
numprocs=1
|
||||
|
||||
[program:rqscheduler]
|
||||
command=%(ENV_HOME)s/wait-for-it.sh %(ENV_CVAT_REDIS_HOST)s:6379 -t 0 -- bash -ic \
|
||||
"python3 /opt/venv/bin/rqscheduler --host %(ENV_CVAT_REDIS_HOST)s --password '%(ENV_CVAT_REDIS_PASSWORD)s' -i 30"
|
||||
environment=SSH_AUTH_SOCK="/tmp/ssh-agent.sock"
|
||||
numprocs=1
|
||||
|
||||
[program:clamav_update]
|
||||
command=bash -c "if [ \"${CLAM_AV}\" = 'yes' ]; then /usr/bin/freshclam -d \
|
||||
-l %(ENV_HOME)s/logs/freshclam.log --foreground=true; fi"
|
||||
numprocs=1
|
||||
|
||||
[program:runserver]
|
||||
; Here need to run a couple of commands to initialize DB and copy static files.
|
||||
; We cannot initialize DB on build because the DB should be online. Also some
|
||||
; apps are dynamically loaded by an environment variable. It can lead to issues
|
||||
; with docker cache. Thus it is necessary to run collectstatic here for such
|
||||
; apps.
|
||||
command=%(ENV_HOME)s/wait-for-it.sh %(ENV_CVAT_POSTGRES_HOST)s:%(ENV_CVAT_POSTGRES_PORT)% -t 0 -- bash -ic \
|
||||
"rm -f /tmp/cvat-server/httpd.pid && python3 ~/manage.py migrate && \
|
||||
python3 ~/manage.py collectstatic --no-input && \
|
||||
exec python3 $HOME/manage.py runmodwsgi --log-to-terminal --port 8080 \
|
||||
--limit-request-body 1073741824 --log-level INFO --include-file ~/mod_wsgi.conf \
|
||||
%(ENV_DJANGO_MODWSGI_EXTRA_ARGS)s --locale %(ENV_LC_ALL)s \
|
||||
--server-root /tmp/cvat-server"
|
||||
|
||||
environment=SSH_AUTH_SOCK="/tmp/ssh-agent.sock"
|
||||
Loading…
Reference in New Issue