mirror of
https://github.com/DayuanJiang/next-ai-draw-io.git
synced 2026-01-02 22:32:27 +08:00
13 lines
265 B
YAML
13 lines
265 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
|
||
|
|
ports: ["3000:3000"]
|
||
|
|
env_file: .env
|
||
|
|
depends_on: [drawio]
|