From e71db3a0ccd30768b4933bc6bc9b3d2269fa0bb0 Mon Sep 17 00:00:00 2001 From: Jonas Braathen Date: Mon, 16 Feb 2026 02:38:45 +0100 Subject: [PATCH] dnscms: switch from 1 to 3 gunicorn workers --- dnscms/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dnscms/Dockerfile b/dnscms/Dockerfile index 3e5f0d2..6bf7fae 100644 --- a/dnscms/Dockerfile +++ b/dnscms/Dockerfile @@ -37,4 +37,4 @@ USER wagtail ENV PATH="/app/.venv/bin:$PATH" RUN python manage.py collectstatic --noinput --clear -CMD ["sh", "-c", "set -xe; python manage.py migrate --noinput && gunicorn dnscms.wsgi:application"] +CMD ["sh", "-c", "set -xe; python manage.py migrate --noinput && gunicorn dnscms.wsgi:application --workers 3"]