Files
data-ge/docker-compose.yml
2025-10-31 09:43:56 +08:00

13 lines
383 B
YAML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

services:
app:
build: .
ports:
- "8060:8000"
volumes:
- .:/app
environment:
- PYTHONUNBUFFERED=1
# 开发模式:启用 --reload
command: uvicorn app.main:app --reload --host 0.0.0.0 --port 8000
# 生产模式:注释上面 command取消注释下面这行
# command: uvicorn app.main:app --host 0.0.0.0 --port 8000 --workers 4