1 Star 0 Fork 1

python/MoneyPrinterTurbo-main

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
docker-compose.yml 679 Bytes
一键复制 编辑 原始数据 按行查看 历史
Administrator 提交于 2024-04-11 10:38 . 'init'
version: "3"
x-common-volumes: &common-volumes
- ./config.toml:/MoneyPrinterTurbo/config.toml
- ./storage:/MoneyPrinterTurbo/storage
services:
webui:
build:
context: .
dockerfile: Dockerfile
container_name: "webui"
ports:
- "8501:8501"
command: ["streamlit", "run", "./webui/Main.py","--browser.serverAddress=0.0.0.0","--server.enableCORS=True","--browser.gatherUsageStats=False"]
volumes: *common-volumes
restart: always
api:
build:
context: .
dockerfile: Dockerfile
container_name: "api"
ports:
- "8080:8080"
command: [ "python3", "main.py" ]
volumes: *common-volumes
restart: always
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/python_43/money-printer-turbo-main.git
git@gitee.com:python_43/money-printer-turbo-main.git
python_43
money-printer-turbo-main
MoneyPrinterTurbo-main
master

搜索帮助