mirror of
https://github.com/harry0703/MoneyPrinterTurbo.git
synced 2026-02-21 16:37:21 +08:00
26 lines
619 B
YAML
26 lines
619 B
YAML
version: "3"
|
|
|
|
x-common-volumes: &common-volumes
|
|
- ./:/MoneyPrinterTurbo
|
|
|
|
services:
|
|
webui:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: "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: "api"
|
|
ports:
|
|
- "8080:8080"
|
|
command: [ "python3", "main.py" ]
|
|
volumes: *common-volumes
|
|
restart: always |