feat: rename container names in docker-compose.yml

This commit is contained in:
harry 2025-05-08 17:35:12 +08:00
parent dfa8328bb0
commit 95e4d3170d

View File

@ -6,7 +6,7 @@ services:
build: build:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile
container_name: "webui" container_name: "moneyprinterturbo-webui"
ports: ports:
- "8501:8501" - "8501:8501"
command: [ "streamlit", "run", "./webui/Main.py","--browser.serverAddress=127.0.0.1","--server.enableCORS=True","--browser.gatherUsageStats=False" ] command: [ "streamlit", "run", "./webui/Main.py","--browser.serverAddress=127.0.0.1","--server.enableCORS=True","--browser.gatherUsageStats=False" ]
@ -16,7 +16,7 @@ services:
build: build:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile
container_name: "api" container_name: "moneyprinterturbo-api"
ports: ports:
- "8080:8080" - "8080:8080"
command: [ "python3", "main.py" ] command: [ "python3", "main.py" ]