fix: replace hyphens with underscores in project naming

This commit is contained in:
2026-02-28 16:26:42 +08:00
parent dd1b67958b
commit fd53ff36a8
3 changed files with 9 additions and 9 deletions

View File

@@ -11,8 +11,8 @@ services:
DATABASE_PORT: ${DATABASE_PORT:-15432}
SECRET_KEY: ${SECRET_KEY:-change-this-secret-key}
DEBUG: ${DEBUG:-False}
image: hospital-performance-backend:${DOCKER_TAG:-latest}
container_name: hospital-performance-backend
image: hospital_performance_backend:${DOCKER_TAG:-latest}
container_name: hospital_performance_backend
restart: unless-stopped
ports:
- "${BACKEND_PORT:-8000}:8000"
@@ -36,8 +36,8 @@ services:
build:
context: .
dockerfile: Dockerfile.frontend
image: hospital-performance-frontend:${DOCKER_TAG:-latest}
container_name: hospital-performance-frontend
image: hospital_performance_frontend:${DOCKER_TAG:-latest}
container_name: hospital_performance_frontend
restart: unless-stopped
ports:
- "${FRONTEND_PORT:-80}:80"