Dai un'occhiata alla documentazione. È un avviso, però, non un errore (vedi il codice). L'esecuzione di Celery sotto root è un errore solo quando si consente la serializzazione del pickle che non è abilitata per impostazione predefinita (vedi qui).
Tuttavia, è sempre consigliabile eseguire Celery con privilegi inferiori. In Docker (con immagine basata su Debian), scelgo di eseguire Celery sotto nobody
:nogroup
. Uso questo Dockerfile
:
FROM python:3.6
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1
WORKDIR /srv/celery
COPY ./app app
COPY ./requirements.txt /tmp/requirements.txt
COPY ./celery.sh celery.sh
RUN pip install --no-cache-dir \
-r /tmp/requirements.txt
VOLUME ["/var/log/celery", "/var/run/celery"]
CMD ["./celery.sh"]
dove celery.sh
appare come segue:
#!/usr/bin/env bash
mkdir -p /var/run/celery /var/log/celery
chown -R nobody:nogroup /var/run/celery /var/log/celery
exec celery --app=app worker \
--loglevel=INFO --logfile=/var/log/celery/worker-example.log \
--statedb=/var/run/celery/[email protected]%h.state \
[email protected]%h \
--queues=celery.example -O fair \
--uid=nobody --gid=nogroup