mirror of
https://github.com/DayuanJiang/next-ai-draw-io.git
synced 2026-01-05 15:52:33 +08:00
Empty environment mapping caused validation error: 'services.next-ai-draw-io.environment must be a mapping'
18 lines
499 B
YAML
18 lines
499 B
YAML
services:
|
|
drawio:
|
|
image: jgraph/drawio:latest
|
|
ports: ["8080:8080"]
|
|
next-ai-draw-io:
|
|
build:
|
|
context: .
|
|
args:
|
|
- NEXT_PUBLIC_DRAWIO_BASE_URL=http://localhost:8080
|
|
# Uncomment below for subdirectory deployment
|
|
# - 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
|
|
depends_on: [drawio]
|