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

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 13:37:10 +09:00
parent 8c1cc19d94
commit eb21d7e3fa

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]