
准备工作
1、开源项目地址:【点击进入】
2、一键部署
docker run -d --name next-ai-drawio --restart=unless-stopped -p 3000:3000 -e ACCESS_CODE_LIST="your_password" ghcr.io/dayuanjiang/next-ai-draw-io:latestbase_url 设置为 https://api.deepseek.com/v1docker run -d --name next-ai-drawio --restart=unless-stopped \
-p 3000:3000 \
-e AI_PROVIDER=deepseek \
-e AI_MODEL=deepseek-chat \
-e DEEPSEEK_API_KEY=sk-xxxxxxxxxxxxxxxx \
-e ACCESS_CODE_LIST="your_password" \
ghcr.io/dayuanjiang/next-ai-draw-io:latest
docker run -d --name next-ai-drawio --restart=unless-stopped \
-p 3000:3000 \
-e AI_PROVIDER=openai \
-e AI_MODEL=gpt-4o \
-e OPENAI_API_KEY="你的OpenAIKey" \
-e ACCESS_CODE_LIST="your_password" \
ghcr.io/dayuanjiang/next-ai-draw-io:latest
docker run -d --name next-ai-drawio --restart=unless-stopped \
-p 3000:3000 \
-e AI_PROVIDER=google \
-e AI_MODEL=gemini-2.5-pro \
-e GOOGLE_GENERATIVE_AI_API_KEY="你的GeminiKey" \
-e ACCESS_CODE_LIST="your_password" \
ghcr.io/dayuanjiang/next-ai-draw-io:latest