2025-12-10 14:20:34 +09:00
|
|
|
services:
|
|
|
|
|
drawio:
|
|
|
|
|
image: jgraph/drawio:latest
|
|
|
|
|
ports: ["8080:8080"]
|
|
|
|
|
next-ai-draw-io:
|
|
|
|
|
build:
|
|
|
|
|
context: .
|
|
|
|
|
args:
|
|
|
|
|
- NEXT_PUBLIC_DRAWIO_BASE_URL=http://localhost:8080
|
2025-12-22 19:58:55 +05:30
|
|
|
# Uncomment below for subdirectory deployment
|
|
|
|
|
# - NEXT_PUBLIC_BASE_PATH=/nextaidrawio
|
2025-12-10 14:20:34 +09:00
|
|
|
ports: ["3000:3000"]
|
|
|
|
|
env_file: .env
|
2026-06-10 20:41:17 +09:00
|
|
|
volumes:
|
|
|
|
|
# Persists admin panel settings (data/settings.json)
|
|
|
|
|
- ./data:/app/data
|
2026-01-03 14:20:43 +09:00
|
|
|
# environment:
|
|
|
|
|
# # For subdirectory deployment, uncomment and set your path:
|
|
|
|
|
# NEXT_PUBLIC_BASE_PATH: /nextaidrawio
|
2025-12-10 14:20:34 +09:00
|
|
|
depends_on: [drawio]
|