修改端口为7400
This commit is contained in:
@@ -42,14 +42,14 @@ RUN mkdir -p templates static/css static/js logs data models
|
||||
RUN chmod +x start_web.py
|
||||
|
||||
# 暴露端口
|
||||
EXPOSE 5000
|
||||
EXPOSE 7400
|
||||
|
||||
# 健康检查
|
||||
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
|
||||
CMD python -c "import requests; requests.get('http://localhost:5000/health')" || exit 1
|
||||
CMD python -c "import requests; requests.get('http://localhost:7400/health')" || exit 1
|
||||
|
||||
# 使用gunicorn启动应用(生产环境)
|
||||
# 注意:默认配置使用2个worker,适合1GB+内存的机器
|
||||
# 如果机器内存较小(512MB-1GB),建议修改为 "--workers", "1"
|
||||
# 使用 python -m gunicorn 确保可以找到 gunicorn(即使可执行文件不在PATH中也能工作)
|
||||
CMD ["python", "-m", "gunicorn", "--bind", "0.0.0.0:5000", "--workers", "2", "--timeout", "120", "--access-logfile", "-", "--error-logfile", "-", "web_app:app"]
|
||||
CMD ["python", "-m", "gunicorn", "--bind", "0.0.0.0:7400", "--workers", "2", "--timeout", "120", "--access-logfile", "-", "--error-logfile", "-", "web_app:app"]
|
||||
|
||||
Reference in New Issue
Block a user