专属域名
文档搜索
轩辕助手
Run助手
邀请有礼
返回顶部
快速返回页面顶部
收起
收起工具栏
轩辕镜像 官方专业版
轩辕镜像 官方专业版轩辕镜像 官方专业版官方专业版
首页个人中心搜索镜像

交易
充值流量我的订单
工具
提交工单镜像收录一键安装
Npm 源Pip 源Homebrew 源
帮助
常见问题
其他
关于我们网站地图

官方QQ群: 13763429

riccoxie/meilisearch-ui Docker 镜像 - 轩辕镜像

meilisearch-ui
riccoxie/meilisearch-ui
😎 Open-source, pretty, simple and fast ⚡ Meilisearch admin dashboard UI 🕹
2 收藏0 次下载activericcoxie镜像
🚀专业版镜像服务,面向生产环境设计
镜像简介版本下载
🚀专业版镜像服务,面向生产环境设计

Meilisearch-UI

ENGLISH | 中文

!GitHub Workflow Status !release !stars !issues !last-commit !Docker Image Version (latest semver) !Docker Pulls !license

An open-source, pretty, simple and fast meilisearch admin dashboard UI for managing your meilisearch instances

[!IMPORTANT] The main branch may be unstable or unavailable during development. Please use release instead of main branch to obtain a stable version app

Features

🚀 Indexes CRUD

🔎 Search documents

💪 Documents management

🛠️️ Index settings

⚓ Multiple instances management

🔒 Data is stored inside your browser

📦 Docker image support

🎱 Singleton mode support (easy to integrate with your own apps)

🌐 I18n support (en, zh)

Quick start

[!WARNING] This app have not achieved responsive design totally, so mind that only use this app on desktop to gain better experience.

CORS settings

✅ Remember update CORS settings in your instance server for this ui domain before using.

Because this app use meilisearch official JS client to call your meilisearch instance, you need to manually configure CORS settings in your web server to make sure ui panel can access your instance server with api calls.

Add your ui panel deployment domain to your instance server cors list.

ex:

conf
# ... other configurations
     add_header Access-Control-Allow-Origin "your.meilisearch-ui.domain.com";
# ... other configurations

Learn how to configure CORS settings in your web server

Online use

There is a live demo 👉 meilisearch-ui, deploy on Vercel.

Docker
sh
docker pull riccoxie/meilisearch-ui:latest

docker run -d --restart=on-failure:5 --name="meilisearch-ui" -p <your-port>:24900 riccoxie/meilisearch-ui:latest
Lightweight mirror image

Due to functions such as adapting custom paths, the main image size will become a burden for some users. If you only need to use the basic functionality of the application, you can use the lite variant image, which contains only the necessary constructs and is very small compared to the main image.

For specific image variants, please refer to Image version list

lite images do not support the following features:

  • Singleton mode
Deploy on Vercel

You can deploy this app to the cloud with Vercel

Just one click the button below to deploy this app automatically

![Deploy with Vercel]([***]

Configures

Base Path

See this issue.

You can configure the base path of this app by setting the BASE_PATH environment variable.

For example, if you want to deploy this app to the /meilisearch-ui path, you can set the BASE_PATH environment variable to /meilisearch-ui.

sh
docker run -d --restart=on-failure:5 --name="meilisearch-ui" -p <your-port>:24900 -e BASE_PATH="/meilisearch-ui" riccoxie/meilisearch-ui:latest
Singleton mode

See this issue.

If you want to use this app with only one meilisearch instance, you can enable the singleton mode in two ways:

Using Docker (Recommended)

Configure singleton mode using environment variables:

sh
docker run -d --restart=on-failure:5 \
  --name="meilisearch-ui" \
  -p <your-port>:24900 \
  -e SINGLETON_MODE=true \
  -e SINGLETON_HOST=your-meilisearch-host \
  -e SINGLETON_API_KEY=your-api-key \
  riccoxie/meilisearch-ui:latest

[!CAUTION]

Security Note

Any singleton mode relevant env variables exposed in this way will eventually appear in the client package, so you should try to avoid using this method. When using singleton mode packaging, you need to carefully judge the network environment in which you deploy the application, and it is recommended to deploy in a trusted internal network environment.

Build from Source

If you need more customization, you can build from source following these steps:

1.Clone this repo

sh
git clone ***:riccox/meilisearch-ui.git --depth=1

2.Go into root dir of repo

sh
cd meilisearch-ui

3.install dependencies

sh
pnpm install

4.create .env.local file at root dir of repo, add the following configuration:

VITE_SINGLETON_MODE=true
VITE_SINGLETON_HOST=your-meilisearch-host
VITE_SINGLETON_API_KEY=your-api-key

[!CAUTION]

Security Risk

See this issue.

.env.local file is local only and you should add it in your .gitignore to prevent it from being recorded by git.

At the same time, any variables exposed in this way will eventually appear in the client package, so you should try to avoid using this method. When using singleton mode packaging, you need to carefully judge the network environment in which you deploy the application, and it is recommended to deploy in a trusted internal network environment.

5.Build the app

sh
pnpm build

Once the build is complete, you will find the dist directory in the root directory, which is a packaged SPA application directory that can be deployed to any server.

You can preview the packaged singleton mode application locally using the following command:

sh
pnpm dlx serve dist

Regardless of which method you use, when you open the app, you will be directly redirected to the instance page.

FAQ

How to allow custom hostnames or reverse proxy domains?

By default, all hosts are allowed and no extra configuration is needed.

Only if you want to restrict allowed hostnames, you can set the optional environment variable ALLOWED_HOSTS. For example:

sh
ALLOWED_HOSTS=demo.ddev.site,another.domain.com

If you have no special requirements, you do not need to set this variable.

Note: The ALLOWED_HOSTS variable is only available in the full version image. The lite image does not support this feature.

Development

[!NOTE] Install pnpm first.

sh
git clone ***:riccox/meilisearch-ui.git

cd meilisearch-ui

pnpm install

pnpm dev

Built with ♥

Core Dependencies
  • Meilisearch - Search engine
  • React v18 - UI library
  • TypeScript - Type safety
  • Vite - Build tool
UI Frameworks & Components
  • Arco Design - Enterprise design system by ByteDance
  • Semi UI - Design system by *** Frontend Team
  • Mantine UI - Modern React components library
  • Next UI - Beautiful React UI library
  • Radix UI - Unstyled, accessible components
  • TailwindCSS - Utility-first CSS framework
  • UnoCSS - Instant atomic CSS engine
State Management & Data Handling
  • TanStack Query - Powerful async state management
  • TanStack Router - Type-safe routing
  • Zustand - Simple state management
  • Immer - Immutable state handling
  • Zod - TypeScript-first schema validation
Internationalization & Forms
  • i18next - Internationalization framework
  • React Hook Form - High-performance forms
  • React Error Boundary - Error handling
Utilities & Enhancements
  • Lodash - Utility library
  • Day.js - Lightweight date handling
  • Fuse.js - Fuzzy search library
  • ECharts - Visualization library
  • ahooks - React Hooks library
Development Tools
  • Biome - Code formatting and linting
  • ESLint - Code quality tool
  • Prettier - Code formatter
UI Enhancements
  • Framer Motion - Animation library
  • Lucide Icons - Icon library
  • Tabler Icons - Icon library
  • Monaco Editor - Code editor
  • Sonner - Toast notifications
  • Vaul - Drawer component
查看更多 meilisearch-ui 相关镜像 →
airbyte/destination-meilisearch logo
airbyte/destination-meilisearch
by Airbyte
认证
暂无描述
8.7K pulls
上次更新:1 年前
getmeili/meilisearch logo
getmeili/meilisearch
by getmeili
这是一款基于开源技术打造的搜索引擎,不仅具备快速高效的响应性能,还能实现超相关的搜索结果精准匹配,同时能够轻松融入各类开发项目,无需繁琐配置即可快速集成,有效简化开发流程,为用户的项目开发提供便捷且强大的搜索功能支持。
11610M+ pulls
上次更新:1 天前
getmeili/meilisearch-enterprise logo
getmeili/meilisearch-enterprise
by getmeili
开源、快速且超相关搜索引擎的企业版
10K+ pulls
上次更新:1 天前

轩辕镜像配置手册

探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式

登录仓库拉取

通过 Docker 登录认证访问私有仓库

Linux

在 Linux 系统配置镜像服务

Windows/Mac

在 Docker Desktop 配置镜像

Docker Compose

Docker Compose 项目配置

K8s Containerd

Kubernetes 集群配置 Containerd

K3s

K3s 轻量级 Kubernetes 镜像加速

Dev Containers

VS Code Dev Containers 配置

MacOS OrbStack

MacOS OrbStack 容器配置

宝塔面板

在宝塔面板一键配置镜像

群晖

Synology 群晖 NAS 配置

飞牛

飞牛 fnOS 系统配置镜像

极空间

极空间 NAS 系统配置服务

爱快路由

爱快 iKuai 路由系统配置

绿联

绿联 NAS 系统配置镜像

威联通

QNAP 威联通 NAS 配置

Podman

Podman 容器引擎配置

Singularity/Apptainer

HPC 科学计算容器配置

其他仓库配置

ghcr、Quay、nvcr 等镜像仓库

专属域名拉取

无需登录使用专属域名

需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

轩辕镜像免费版与专业版有什么区别?

免费版仅支持 Docker Hub 访问,不承诺可用性和速度;专业版支持更多镜像源,保证可用性和稳定速度,提供优先客服响应。

轩辕镜像支持哪些镜像仓库?

专业版支持 docker.io、gcr.io、ghcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co 等;免费版仅支持 docker.io。

流量耗尽错误提示

当返回 402 Payment Required 错误时,表示流量已耗尽,需要充值流量包以恢复服务。

410 错误问题

通常由 Docker 版本过低导致,需要升级到 20.x 或更高版本以支持 V2 协议。

manifest unknown 错误

先检查 Docker 版本,版本过低则升级;版本正常则验证镜像信息是否正确。

镜像拉取成功后,如何去掉轩辕镜像域名前缀?

使用 docker tag 命令为镜像打上新标签,去掉域名前缀,使镜像名称更简洁。

查看全部问题→

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

oldzhang的头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

轩辕镜像
镜像详情
...
riccoxie/meilisearch-ui
官方博客Docker 镜像使用技巧与技术博客
热门镜像查看热门 Docker 镜像推荐
一键安装一键安装 Docker 并配置镜像源
提交工单
咨询镜像拉取问题请 提交工单,官方技术交流群:13763429
轩辕镜像面向开发者与科研用户,提供开源镜像的搜索和访问支持。所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
咨询镜像拉取问题请提交工单,官方技术交流群:
轩辕镜像面向开发者与科研用户,提供开源镜像的搜索和访问支持。所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
官方邮箱:点击复制邮箱
©2024-2026 源码跳动
官方邮箱:点击复制邮箱Copyright © 2024-2026 杭州源码跳动科技有限公司. All rights reserved.