fix(docker): fix invalid YAML syntax in docker-compose.yml (#498)

Empty environment mapping caused validation error:
'services.next-ai-draw-io.environment must be a mapping'
This commit is contained in:
Dayuan Jiang
2026-01-03 14:20:43 +09:00
committed by GitHub
parent 8c1cc19d94
commit bc22b7c315

View File

@@ -11,7 +11,7 @@ services:
# - NEXT_PUBLIC_BASE_PATH=/nextaidrawio
ports: ["3000:3000"]
env_file: .env
environment:
# For subdirectory deployment, uncomment and set your path:
# NEXT_PUBLIC_BASE_PATH: /nextaidrawio
# environment:
# # For subdirectory deployment, uncomment and set your path:
# NEXT_PUBLIC_BASE_PATH: /nextaidrawio
depends_on: [drawio]