RuoYi-AI Admin Panel

August 4, 2026 · View on GitHub

RuoYi AI Logo

Enterprise-Grade AI Assistant Platform - Admin Panel

The RuoYi-AI admin panel for system management, model configuration, knowledge-base management, and workflow orchestration.

中文 | Live Demo | Backend Service | User Frontend

Tech Stack

  • Framework: Vue 3 + Vben Admin
  • UI Components: element-plus-x
  • Build Tool: Vite

Docker Deployment

This admin panel supports two Docker deployment methods:

Use docker-compose-all.yaml to start all services at once, including the backend, admin panel, user frontend, and dependencies:

# Clone the backend repository
git clone https://github.com/ageerle/ruoyi-ai.git
cd ruoyi-ai

# Start all services using pre-built images
docker-compose -f docker-compose-all.yaml up -d

# Open the admin panel
# URL: http://localhost:25666
# Account: admin / admin123

Method 2: Deploy Services Separately (Build from Source)

If you need to build from source, follow these steps:

Step 1: Deploy the Backend Service

# Enter the backend project directory
cd ruoyi-ai

# Start the backend service and build from source
docker-compose up -d --build

# Wait for the backend service to start
docker-compose logs -f backend

Step 2: Deploy the Admin Panel

# Enter the admin project directory
cd ruoyi-admin

# Build and start the admin panel
docker-compose up -d --build

# Open the admin panel
# URL: http://localhost:5666

Step 3: Deploy the User Frontend (Optional)

# Enter the user frontend project directory
cd ruoyi-web

# Build and start the user frontend
docker-compose up -d --build

# Open the user frontend
# URL: http://localhost:5137

Service Ports

ServicePortDescription
Admin panel5666Admin panel URL
User frontend5137User frontend URL
Backend service6039Backend API service
MySQL23306Database service
Redis6379Cache service
Weaviate28080Vector database
MinIO9000/9090Object storage

Local Development

# Install dependencies
pnpm install

# Start the development server
pnpm dev

# Build the production version
pnpm build

FAQ

Q: The admin panel cannot connect to the backend service.

A: Make sure the backend service is running and verify that the UPSTREAM_HOST environment variable is configured correctly.

Q: What is the difference between one-command startup and separate deployment?

A: One-command startup uses pre-built images for faster deployment. Separate deployment builds from source and is suitable when custom changes are required.

License

This project is licensed under the MIT License. See the LICENSE file for details.


⭐ Star this projectFork and contribute

Made with ❤️ and maintained by the RuoYi AI open-source community