fix: replace hyphens with underscores in project naming
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user