mirror of
https://github.com/inventree/InvenTree.git
synced 2025-12-23 04:33:29 +00:00
Dockerfile updates
This commit is contained in:
42
docker/supervisord.conf
Normal file
42
docker/supervisord.conf
Normal file
@@ -0,0 +1,42 @@
|
||||
; # Supervisor Config File (for docker build)
|
||||
;
|
||||
; This config file is specific to the InvenTree docker build!
|
||||
;
|
||||
; There are two separate processes which must be managed:
|
||||
;
|
||||
; ## Web Server
|
||||
; The InvenTree server must be launched and managed as a process
|
||||
; The recommended way to handle the web server is to use gunicorn
|
||||
;
|
||||
; ## Background Tasks
|
||||
; A background task manager processes long-running and periodic tasks
|
||||
; InvenTree uses django-q for this purpose
|
||||
|
||||
[supervisord]
|
||||
user=inventree
|
||||
nodaemon=true
|
||||
|
||||
[program:inventree-server]
|
||||
user=inventree
|
||||
directory=%(ENV_INVENTREE_SRC_DIR)s/InvenTree
|
||||
command=%(ENV_INVENTREE_VENV)s/bin/gunicorn -c %(ENV_INVENTREE_HOME)s/gunicorn.conf.py InvenTree.wsgi -b 0.0.0.0:80
|
||||
startsecs=10
|
||||
autostart=true
|
||||
autorestart=true
|
||||
startretries=3
|
||||
stdout_logfile=/dev/fd/1
|
||||
stdout_logfile_maxbytes=0
|
||||
stderr_logfile=/dev/fd/2
|
||||
stderr_logfile_maxbytes=0
|
||||
|
||||
[program:inventree-cluster]
|
||||
user=inventree
|
||||
directory=%(ENV_INVENTREE_SRC_DIR)s/InvenTree
|
||||
command=%(ENV_INVENTREE_VENV)s/bin/python DJANGO_SETTINGS_FILE=InvenTree.settings manage.py qcluster
|
||||
startsecs=10
|
||||
autostart=true
|
||||
autorestart=true
|
||||
stdout_logfile=/dev/fd/1
|
||||
stdout_logfile_maxbytes=0
|
||||
stderr_logfile=/dev/fd/2
|
||||
stderr_logfile_maxbytes=0
|
||||
Reference in New Issue
Block a user