CoolFace
Apppublic

dw2026/mpt2026

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
docker-compose.yml24 linesDownload Raw Back to root
1x-common-volumes: &common-volumes2  - ./:/MoneyPrinterTurbo3 4services:5  webui:6    build:7      context: .8      dockerfile: Dockerfile9    container_name: "moneyprinterturbo-webui"10    ports:11      - "8501:8501"12    command: [ "streamlit", "run", "./webui/Main.py","--browser.serverAddress=127.0.0.1","--server.enableCORS=True","--browser.gatherUsageStats=False" ]13    volumes: *common-volumes14    restart: always15  api:16    build:17      context: .18      dockerfile: Dockerfile19    container_name: "moneyprinterturbo-api"20    ports:21      - "8080:8080"22    command: [ "python3", "main.py" ]23    volumes: *common-volumes24    restart: always