# ai-draw **Repository Path**: corffee/ai-draw ## Basic Information - **Project Name**: ai-draw - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-02-07 - **Last Updated**: 2026-03-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README English | [中文](./README.md)
An AI-powered diagram platform lets you describe charts in natural language and interact with AI for easy creation. It supports Mermaid, Excalidraw, and Draw.io engines. Users can privately deploy with Docker, store and manage diagram files, and choose between local or cloud use, and supports multi-user usage.
AI驱动的图表创作平台,与AI对话,轻松使用Mermaid、Excalidraw和Draw.io绘图,支持docker私有部署、绘图文件存储和管理、本地和云端两种使用模式,支持多用户使用。
AI Draw is a smart diagramming tool that generates flowcharts, timelines, architecture diagrams, and more using natural language commands, eliminating the need for complex drag-and-drop operations and making ideas visible instantly. It supports Mermaid, Excalidraw, and Draw.io and allows for private deployment via Docker, as well as the management of drawing files and groups.
Developed from next-ai-drawio and ai-draw-next, it includes enhanced features such as file management, group organization, both local and cloud-based access, and dynamic drawing effects, while also improving the user experience through various adjustments.
## Screenshot




## Private deployment- Docker Compose (Recommendation)
**1. Deploy and launch a project using Docker**
```bash
version: '3.8'
services:
ai-draw:
build: .
image: ghcr.io/stone-yu/ai-draw:latest
container_name: ai-draw
restart: unless-stopped
ports:
- "3000:3000"
volumes:
# Map local data directory to container data directory
# On NAS, change ./data to your actual path, e.g., /volume1/docker/aidraw/data
- ./data/aidraw:/app/data
environment:
- PORT=3000
- DATA_DIR=/app/data
- DEBUG=false
```
**2.Access the system:** Access http://