diff --git a/docker/uwsgi.dev.ini b/docker/uwsgi.dev.ini index 5b23b183..191423bf 100644 --- a/docker/uwsgi.dev.ini +++ b/docker/uwsgi.dev.ini @@ -8,7 +8,7 @@ exec-pre = python /app/scripts/wait_for_redis.py ; Start Redis first attach-daemon = redis-server ; Then start other services -attach-daemon = celery -A dispatcharr worker -l info +attach-daemon = celery -A dispatcharr worker -l info --concurrency=4 attach-daemon = celery -A dispatcharr beat -l info attach-daemon = daphne -b 0.0.0.0 -p 8001 dispatcharr.asgi:application attach-daemon = cd /app/frontend && npm run dev diff --git a/docker/uwsgi.ini b/docker/uwsgi.ini index 1b1de50a..e1da85a5 100644 --- a/docker/uwsgi.ini +++ b/docker/uwsgi.ini @@ -8,7 +8,7 @@ exec-pre = python /app/scripts/wait_for_redis.py ; Start Redis first attach-daemon = redis-server ; Then start other services -attach-daemon = celery -A dispatcharr worker -l error +attach-daemon = celery -A dispatcharr worker -l error --concurrency=4 attach-daemon = celery -A dispatcharr beat -l error attach-daemon = daphne -b 0.0.0.0 -p 8001 dispatcharr.asgi:application