You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
myblog/docker-entrypoint.sh

11 lines
258 B

2 years ago
echo "启动成功"
sleep 10
2 years ago
mkdir -p upload/images
2 years ago
python manage.py migrate
2 years ago
python manage.py collectstatic
gunicorn --workers 8 \
--bind 0.0.0.0:8000 \
djangoProject.wsgi:application \
--log-level info \
2 years ago
--access-logfile /var/log/myblog.log \
--timeout 3600