增加TDX数据源,增加交易时段盯盘设置

This commit is contained in:
oficcejo
2025-11-04 22:25:42 +08:00
parent dbc6b5b359
commit 595278100f
22 changed files with 2717 additions and 85 deletions
+3 -3
View File
@@ -62,10 +62,10 @@ COPY . .
RUN mkdir -p /app/data && chmod 777 /app/data
# 暴露Streamlit默认端口
EXPOSE 8501
EXPOSE 8503
# 设置健康检查
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health || exit 1
HEALTHCHECK CMD curl --fail http://localhost:8503/_stcore/health || exit 1
# 启动应用
CMD ["streamlit", "run", "app.py"]
CMD ["streamlit", "run", "app.py", "--server.port=8503", "--server.address=0.0.0.0"]