fix: remove extraneous single quote from uvicorn command in docker-compose.yml

This commit is contained in:
vinland100 2026-01-06 17:17:59 +08:00
parent ed5aaa501f
commit eac1620504
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ services:
redis: redis:
condition: service_healthy condition: service_healthy
# 开发模式下,可以启用 --reload 热重载 # 开发模式下,可以启用 --reload 热重载
command: sh -c ".venv/bin/alembic upgrade head && .venv/bin/uvicorn app.main:app --host 0.0.0.0 --port 8000'" command: sh -c ".venv/bin/alembic upgrade head && .venv/bin/uvicorn app.main:app --host 0.0.0.0 --port 8000"
networks: networks:
- deepaudit-network - deepaudit-network