anything-llm/docker/docker-entrypoint.sh
2023-08-16 17:54:00 -07:00

5 lines
181 B
Bash
Executable File

#!/bin/bash
node /app/server/index.js &
{ FLASK_ENV=production FLASK_APP=wsgi.py cd collector && gunicorn --timeout 300 --workers 4 --bind 0.0.0.0:8888 wsgi:api; } &
wait -n
exit $?