You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docker run -p 6379:6379 --restart always --detach redis &
echo "Your ENV settings loaded from .env.localhost file: "
printenv
echo "Downloading models"
RUN python -c 'from marker.models import load_all_models; load_all_models()'
echo "Starting Celery worker"
cd app
celery -A main.celery worker --loglevel=info --pool=solo & # to scale by concurrent processing please run this line as many times as many concurrent processess you want to have running