mirror of
https://github.com/harry0703/MoneyPrinterTurbo.git
synced 2025-11-25 03:15:04 +08:00
24 lines
641 B
YAML
24 lines
641 B
YAML
x-common-volumes: &common-volumes
|
|
- ./:/MoneyPrinterTurbo
|
|
|
|
services:
|
|
webui:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: "moneyprinterturbo-webui"
|
|
ports:
|
|
- "8501:8501"
|
|
command: [ "streamlit", "run", "./webui/Main.py","--browser.serverAddress=127.0.0.1","--server.enableCORS=True","--browser.gatherUsageStats=False" ]
|
|
volumes: *common-volumes
|
|
restart: always
|
|
api:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: "moneyprinterturbo-api"
|
|
ports:
|
|
- "8080:8080"
|
|
command: [ "python3", "main.py" ]
|
|
volumes: *common-volumes
|
|
restart: always |