11 lines
243 B
Bash
11 lines
243 B
Bash
|
#!/bin/bash
|
||
|
# entrypoint.sh
|
||
|
|
||
|
# 启动 Celery Worker
|
||
|
echo "Starting Celery..."
|
||
|
celery -A selenium_django worker -l info --pool=solo &
|
||
|
|
||
|
# 启动 Django
|
||
|
echo "Starting Django..."
|
||
|
exec gunicorn selenium_django.wsgi:application --bind 0.0.0.0:8000
|