mirror of
https://github.com/Yanyutin753/RefreshToV1Api.git
synced 2025-10-17 16:43:57 +00:00
[fix]增加dockerfile指定配置选项
This commit is contained in:
12
start.sh
12
start.sh
@@ -3,8 +3,18 @@
|
||||
# 记录当前日期和时间
|
||||
NOW=$(date +"%Y-%m-%d-%H-%M")
|
||||
|
||||
|
||||
# 如未设置,填充默认值
|
||||
if [ -z "$PROCESS_WORKERS" ]; then
|
||||
export PROCESS_WORKERS=1
|
||||
fi
|
||||
|
||||
if [ -z "$PROCESS_THREADS" ]; then
|
||||
export PROCESS_THREADS=2
|
||||
fi
|
||||
|
||||
# 启动 Gunicorn 并使用 tee 命令同时输出日志到文件和控制台
|
||||
exec gunicorn -w 2 --threads 2 --bind 0.0.0.0:33333 main:app --access-logfile - --error-logfile -
|
||||
exec gunicorn -w ${PROCESS_WORKERS} --threads ${PROCESS_THREADS} --bind 0.0.0.0:33333 main:app --access-logfile - --error-logfile -
|
||||
|
||||
# python3 ./main.py
|
||||
|
||||
|
Reference in New Issue
Block a user