轩辕镜像 官方专业版
轩辕镜像
专业版
轩辕镜像 官方专业版
轩辕镜像
专业版
首页个人中心搜索镜像
交易
充值流量¥7起我的订单
文档
工具
提交工单页面收录
neko-master

foru17/neko-master

foru17

Modern traffic analytics for edge gateways

下载次数: 0状态:社区镜像维护者:foru17仓库类型:镜像最近更新:4 天前
让 AI 帮你使用轩辕镜像? · 展开查看说明 · 点击收起说明

如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。

只需在 AI 对话中先发送下面这句话即可:

请先完整阅读并严格遵守以下文档中的全部规则与要求:

https://xuanyuan.cloud/agents.md

在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。

查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。

镜像简介
下载命令
镜像标签列表与下载命令
轩辕镜像,不浪费每一次拉取。
点击查看


Neko Master

See your network traffic clearly.
Real-time monitoring · Traffic auditing · Multi-gateway support

English | 中文

https://github.com/foru17/neko-master/stargazers https://hub.docker.com/r/foru17/neko-master https://hub.docker.com/r/foru17/neko-master https://hub.docker.com/r/foru17/neko-master https://github.com/foru17/neko-master/blob/main/LICENSE

https://github.com/foru17/neko-master/actions/workflows/docker-build.yml

[!IMPORTANT] Disclaimer

This project is a traffic analysis and visualization tool for local gateway environments.

It does not provide any network access service, proxy subscription, or cross-network connectivity. All data is collected from the user's own network environment.

This project is open-sourced under the MIT License. We assume no responsibility for any consequences resulting from the use of this software. Please use it in compliance with applicable laws and regulations.

</td>
<td align="center" width="50%">
  
</td>
</td>
<td align="center" width="50%">
  
</td>

About the Name

Neko (ねこ) means cat in Japanese. Pronounced /ˈneɪkoʊ/ (NEH-ko).

Like a cat, Neko Master observes network traffic quietly and precisely. It is a lightweight analytics dashboard designed for modern gateway environments.

📋 Table of Contents

  • ✨ Features
  • 🚀 Quick Start
  • 🤖 Agent Deployment
  • 📖 First Use
  • 🔧 Port Conflict Resolution
  • 🐳 Docker Configuration
  • 🗄️ ClickHouse (Optional)
  • 🌐 Reverse Proxy & Tunnel
  • 🔐 Authentication & Security
  • ❓ FAQ
  • 🏗️ Architecture Guide
  • 🤝 Feedback & Issues
  • 📁 Project Structure
  • 🛠️ Tech Stack
  • 📄 License

✨ Features

FeatureDescription
📊 Real-time MonitoringWebSocket real-time collection with millisecond latency
📈 Trend AnalysisMulti-dimensional traffic trends: 30min / 1h / 24h
🌐 Domain AnalysisView traffic, associated IPs, and connection count per domain
🗺️ IP AnalysisASN, geo-location, and associated domain display
🚀 Proxy StatisticsTraffic distribution and connection count per proxy node
📱 PWA SupportInstall as desktop app for native experience
🌙 Dark ModeLight / Dark / System theme support
🌍 i18n SupportEnglish / Chinese seamless switching
🔄 Multi-BackendMonitor multiple Open*** backend instances simultaneously

🚀 Quick Start

Option 1: Docker Compose (Recommended)

The repository's built-in docker-compose.yml maps 3000/3001/3002 by default. Scenarios A/B below are minimal templates for common deployments.

Scenario A: Minimal deployment (only expose 3000)

yaml
services:
  neko-master:
    image: foru17/neko-master:latest
    container_name: neko-master
    restart: unless-stopped
    ports:
      - "3000:3000" # Web UI
    volumes:
      - ./data:/app/data
      # Local MMDB (optional, files should be downloaded into ./geoip)
      - ./geoip:/app/data/geoip:ro
    environment:
      - NODE_ENV=production
      - DB_PATH=/app/data/stats.db
      - COOKIE_SECRET=${COOKIE_SECRET}

Recommended in .env (same directory as docker-compose.yml): COOKIE_SECRET=<at least 32-byte random string> (generate with openssl rand -hex 32)

This mode is fully upgrade-compatible and works out of the box. If WS is not routed, the app falls back to HTTP polling automatically.

Scenario B: Real-time WebSocket (recommended with reverse proxy)

yaml
services:
  neko-master:
    image: foru17/neko-master:latest
    container_name: neko-master
    restart: unless-stopped
    ports:
      - "3000:3000" # Web UI
      - "3002:3002" # WebSocket (for Nginx / Tunnel forwarding)
    volumes:
      - ./data:/app/data
      # Local MMDB (optional, files should be downloaded into ./geoip)
      - ./geoip:/app/data/geoip:ro
    environment:
      - NODE_ENV=production
      - DB_PATH=/app/data/stats.db
      - COOKIE_SECRET=${COOKIE_SECRET}

Then run:

bash
docker compose up -d

Open http://localhost:3000 to get started.

If you use the repository's built-in Compose file (default 3000/3001/3002), run the same command.

Option 2: Docker Run

bash
# Generate a fixed cookie secret first (for session persistence)
export COOKIE_SECRET="$(openssl rand -hex 32)"
bash
# Minimal (only 3000)
docker run -d \
  --name neko-master \
  -p 3000:3000 \
  -v $(pwd)/data:/app/data \
  -e COOKIE_SECRET="$COOKIE_SECRET" \
  --restart unless-stopped \
  foru17/neko-master:latest

# Real-time WS (with reverse proxy)
docker run -d \
  --name neko-master \
  -p 3000:3000 \
  -p 3002:3002 \
  -v $(pwd)/data:/app/data \
  -e COOKIE_SECRET="$COOKIE_SECRET" \
  --restart unless-stopped \
  foru17/neko-master:latest

Open http://localhost:3000 to get started.

The frontend uses same-origin /api by default, so port 3001 is usually not required externally. For real-time WS, your reverse proxy/tunnel must be able to reach port 3002. If not, the app falls back to ~5s HTTP polling.

For docker run, change external ports using -p mappings directly. Only if you use direct WS access (no reverse proxy) and external WS port is not 3002, also pass -e WS_EXTERNAL_PORT=<external-ws-port>.

Local MMDB lookup mode (optional): mount -v $(pwd)/geoip:/app/data/geoip:ro, then switch source to Local in Settings -> Preferences -> IP Lookup Source.

Option 3: One-Click Script

Automatically detects port conflicts and configures everything:

bash
# Using curl
curl -fsSL https://raw.githubusercontent.com/foru17/neko-master/main/setup.sh | bash

# Or using wget
wget -qO- https://raw.githubusercontent.com/foru17/neko-master/main/setup.sh | bash

The script will automatically:

  • ✅ Download docker-compose.yml
  • ✅ Check if default ports (3000/3001/3002) are in use
  • ✅ Suggest available alternative ports
  • ✅ Create configuration file and start the service

Option 4: Source Code

bash
# 1. Clone the repository
git clone https://github.com/foru17/neko-master.git
cd neko-master

# 2. Install dependencies
pnpm install

# 3. Prepare collector env (source mode reads apps/collector/.env)
cp apps/collector/.env.example apps/collector/.env

# 4. Start development services
pnpm dev

Open http://localhost:3000 to configure.

In source mode: collector listens on 3001/3002, web listens on 3000 by default. If you changed API_PORT (not 3001), set API_URL accordingly (for example API_URL=http://localhost:4001) so web /api rewrite targets the correct API. apps/collector/.env.local takes precedence over apps/collector/.env.

🤖 Agent Deployment

Use Agent mode when you want one centralized Neko Master service and multiple remote devices (OpenWrt, Linux, macOS) collecting local gateway data. The agent runs near the gateway, pulls data, and reports to the panel — the panel never connects to the gateway directly.

Supported gateway types: ***** / ***** (WebSocket real-time) and ***** v5+** (HTTP polling).

Quick Install (UI-generated command)

  1. In the dashboard, go to Settings → Backends, add an Agent backend, select gateway type
  2. Click "View Agent Script" and copy the one-line install command, then run it on the target host:
bash
# Clash / Mihomo gateway example
curl -fsSL https://raw.githubusercontent.com/foru17/neko-master/main/apps/agent/install.sh \
  | env NEKO_SERVER='http://your-panel:3000' \
        NEKO_BACKEND_ID='1' \
        NEKO_BACKEND_TOKEN='ag_xxx' \
        NEKO_GATEWAY_TYPE='clash' \
        NEKO_GATEWAY_URL='http://127.0.0.1:9090' \
        sh

# Surge gateway example
curl -fsSL https://raw.githubusercontent.com/foru17/neko-master/main/apps/agent/install.sh \
  | env NEKO_SERVER='http://your-panel:3000' \
        NEKO_BACKEND_ID='2' \
        NEKO_BACKEND_TOKEN='ag_yyy' \
        NEKO_GATEWAY_TYPE='surge' \
        NEKO_GATEWAY_URL='http://127.0.0.1:9091' \
        sh

After install, manage instances with nekoagent:

bash
nekoagent list               # list all instances
nekoagent status <instance>  # check running state
nekoagent logs <instance>    # tail live logs
nekoagent restart <instance> # restart
nekoagent upgrade            # global upgrade (CLI + binary)

The script auto-detects an existing installation — if neko-agent is already present, it only adds the new instance without re-downloading. Multiple instances can run on the same host (different NEKO_INSTANCE_NAME), each pointing to a different gateway.

Agent Documentation

  • Overview: architecture, Direct vs Agent comparison, security model
  • Quick Start: end-to-end setup from UI to running agent
  • Install Guide: install methods, systemd / launchd autostart
  • Configuration: full flag and env variable reference
  • Release Flow: versioning and compatibility policy
  • Troubleshooting: common errors and fixes

📖 First Use

!First Use

Connect *** / ***

  1. Open http://localhost:3000
  2. The Gateway Configuration dialog will appear on first visit
  3. Fill in your network gateway (e.g., Open***) connection info:
    • Name: Custom name (e.g., "Home Gateway")
    • Type: Select Clash / Mihomo
    • Host: Gateway backend address (e.g., 192.168.101.1)
    • Port: Gateway backend port (e.g., 9090)
    • Token: Fill if Secret is configured, otherwise leave empty
  4. Click "Add Backend" to save
  5. The system will automatically start collecting and analyzing traffic data

💡 Get Gateway Address: Go to your gateway control panel (e.g., Open***) → Enable "External Control" → Copy API address

Connect ***

!*** HTTP API Configuration

Neko Master supports connecting to *** gateways for complete rule chain visualization and traffic analysis.

1. Enable *** HTTP API

Enable HTTP remote API in your *** configuration:

ini
[General]
http-api = 127.0.0.1:9091
http-api-tls = false
http-api-web-dashboard = true

Or configure via ***'s graphical interface:

  • HTTP Remote API: Settings → General → HTTP Remote API
  • Port: Default 9091
  • Authentication: Recommended to set a password for enhanced security

2. Add *** Backend in Neko Master

  1. Open Neko Master settings dialog
  2. Click "Add Backend"
  3. Fill in the connection info:
    • Name: Custom name (e.g., "*** Home")
    • Type: Select Surge
    • Host: IP address where *** is running (e.g., 192.168.1.1 or 127.0.0.1)
    • Port: HTTP API port (default 9091)
    • Token: HTTP API password (if configured)
  4. Click "Test Connection" to verify the configuration
  5. Save the configuration

💡 Note: *** uses HTTP polling to fetch data (compared to ***'s WebSocket real-time stream), with a data refresh delay of approximately 2 seconds.

🔧 Port Conflict Resolution

If you see "port already in use" error, here are the solutions:

Solution 1: Use .env File

Create a .env file in the same directory as docker-compose.yml:

env
WEB_EXTERNAL_PORT=8080    # Change Web UI port
API_EXTERNAL_PORT=8081    # Change API port
WS_EXTERNAL_PORT=8082     # Change WebSocket external port (only for direct access)
COOKIE_SECRET=your-long-random-secret   # Strongly recommended to keep fixed

Then restart:

bash
docker compose down
docker compose up -d

Now access http://localhost:8080

Solution 2: Directly Modify docker-compose.yml

yaml
ports:
  - "8080:3000" # External 8080 → Internal 3000
  - "8082:3002" # External 8082 → Internal 3002 (for proxy/tunnel WS forwarding)

Note: if you use direct WS access (no reverse proxy) and external WS port is not 3002, set WS_EXTERNAL_PORT=<external-ws-port>.

Solution 3: Use One-Click Script

bash
curl -fsSL https://raw.githubusercontent.com/foru17/neko-master/main/setup.sh | bash

The script will automatically detect and suggest available ports.

🐳 Docker Configuration

Ports

PortPurposeExternal RequiredDescription
3000Web UI✅Frontend entry point
3001APIOptionalFrontend uses same-origin /api by default; usually no public exposure needed (default Compose maps it)
3002WebSocketOptionalReal-time push endpoint; recommended for reverse proxy/tunnel forwarding only (default Compose maps it)

Environment Variables (Deployment)

VariableDefaultPurposeWhen to set
WEB_PORT3000Web listen port (inside container)Usually unchanged
API_PORT3001API listen port (inside container)Usually unchanged
COLLECTOR_WS_PORT3002WS listen port (inside container)Usually unchanged
DB_PATH/app/data/stats.dbSQLite data pathCustom data path
WEB_EXTERNAL_PORT3000External web port mapping in docker-compose.ymlExternal web port changed
API_EXTERNAL_PORT3001External API port mapping in docker-compose.ymlDirect external API access needed
WS_EXTERNAL_PORT3002External WS port mapping in docker-compose.yml; also used for direct WS port inferenceDirect WS access without proxy and external WS port changed
NEXT_PUBLIC_API_URLemptyOverride frontend API base URL (e.g. https://api.example.com)API is not same-origin /api
NEXT_PUBLIC_WS_URLemptyOverride frontend WS URL (absolute URL or /custom_ws)Custom WS path/domain
NEXT_PUBLIC_WS_PORT3002WS direct-connection fallback port (build-time only — setting this at Docker runtime has no effect; use WS_EXTERNAL_PORT instead)Only for custom source builds
API_URLhttp://localhost:3001Next.js /api rewrite target (mainly source/custom builds)API listen address changed
COOKIE_SECRETauto-generatedCookie signing secret; if not fixed, sessions can be invalidated after restart when data dir is not persistedStrongly recommended in production
GEOIP_LOOKUP_PROVIDERonlineIP geolocation source (online / local)Default to local MMDB lookup
GEOIP_ONLINE_API_URLhttps://api.ipinfo.es/ipinfoOnline IP geolocation API endpoint (must be compatible with ipinfo.my response schema)Set only when you deploy a compatible endpoint
FORCE_ACCESS_CONTROL_OFFfalseForce disable access control (emergency recovery)Temporary use only when token is lost
SHOWCASE_SITE_MODEfalseRead-only showcase mode (blocks sensitive write operations)Public demo sites only

Advanced Tuning Variables (Optional)

VariableDefaultDescription
FLUSH_INTERVAL_MS30000Buffer flush interval for collector writes
FLUSH_MAX_BUFFER_SIZE5000Max buffer entries before early flush
REALTIME_MAX_MINUTES180Realtime in-memory window size (minutes)
REALTIME_RANGE_END_TOLERANCE_MS120000End-time tolerance for range queries
SURGE_POLICY_SYNC_INTERVAL_MS600000*** policy sync interval
DB_RANGE_QUERY_CACHE_TTL_MS8000Range-query cache TTL
DB_HISTORICAL_QUERY_CACHE_TTL_MS300000Historical-query cache TTL
DB_RANGE_QUERY_CACHE_MAX_ENTRIES1024Max range-query cache entries
DB_RANGE_QUERY_CACHE_DISABLEDemptySet 1 to disable range-query cache
DEBUG_SURGEfalseEnable *** collector debug logs (true)

API / WS Resolution Priority

  1. API client base: runtime-config.API_URL → NEXT_PUBLIC_API_URL → same-origin /api
  2. /api server-side rewrite target: API_URL (default http://localhost:3001, applied in Next.js rewrites)
  3. WS URL: runtime-config.WS_URL → NEXT_PUBLIC_WS_URL → auto candidates (when runtime-config.WS_PORT is set, direct port is preferred; otherwise /_cm_ws is tried first)
  4. WS port: runtime-config.WS_PORT (from WS_EXTERNAL_PORT) → NEXT_PUBLIC_WS_PORT → 3002
  5. In normal deployments, NEXT_PUBLIC_WS_URL is usually unnecessary unless you use a custom WS path/domain

Production Environment Baseline (Recommended)

env
NODE_ENV=production
DB_PATH=/app/data/stats.db
COOKIE_SECRET=<at least 32-byte random string>
# Optional: default to local MMDB lookup
# GEOIP_LOOKUP_PROVIDER=local
# Keep false in normal operation
# FORCE_ACCESS_CONTROL_OFF=false

Use openssl rand -hex 32 to generate COOKIE_SECRET.

Additional recommendations:

  1. Mount persistent storage (for example ./data:/app/data) to avoid data and secret loss.
  2. If using direct WS access and external WS port is not 3002, set WS_EXTERNAL_PORT accordingly.
  3. If API port/address changes in source deployment, update API_URL as well.
  4. For local MMDB lookup, mount ./geoip:/app/data/geoip:ro and switch source in Settings -> Preferences -> IP Lookup Source.
  5. MMDB files are large and are not bundled in the image. Download and place them in ./geoip with fixed names: GeoLite2-City.mmdb, GeoLite2-ASN.mmdb (required), and GeoLite2-Country.mmdb (optional). Recommended source: https://github.com/P3TERX/GeoLite.mmdb.

Advanced Agent details (install, config, release, compatibility) are maintained under docs/agent/*.

🗄️ ClickHouse (Optional)

SQLite is Neko Master's default storage engine and works well for most users. *** enabling ClickHouse if you need:

  • Very large datasets (hundreds of thousands of domain/IP entries)
  • Fast aggregation queries over long time ranges (≥ 7 days)
  • Separation of historical stats from configuration/metadata storage

ClickHouse is entirely optional. SQLite remains as the configuration and metadata store regardless of whether ClickHouse is enabled.

Architecture Overview

When ClickHouse is enabled, the system enters dual-write mode:

BatchBuffer.flush()
    │
    ├──→ SQLite (config / metadata, always written)
    └──→ ClickHouse (stats traffic data, dual-write)
           └── Buffer tables → SummingMergeTree async merge

Read source is controlled by STATS_QUERY_SOURCE (default: sqlite).

Enabling ClickHouse (Docker)

Step 1: Start the ClickHouse container

The repository's built-in docker-compose.yml already includes a ClickHouse service, gated by profiles: [clickhouse] so it does not start by default. From the repository root, run:

bash
docker compose --profile clickhouse up -d

ClickHouse data is persisted to ./data/clickhouse, separate from the main app data directory.

If you use a custom docker-compose.yml (such as Scenario A/B above), add the ClickHouse service block manually:

yaml
services:
  neko-master:
    # ... your existing config ...
    environment:
      # append to existing environment section:
      - CH_ENABLED=${CH_ENABLED:-0}
      - CH_HOST=${CH_HOST:-clickhouse}
      - CH_PORT=${CH_PORT:-8123}
      - CH_DATABASE=${CH_DATABASE:-neko_master}
      - CH_USER=${CH_USER:-neko}
      - CH_PASSWORD=${CH_PASSWORD:-neko_master}
      - CH_WRITE_ENABLED=${CH_WRITE_ENABLED:-0}
      - STATS_QUERY_SOURCE=${STATS_QUERY_SOURCE:-sqlite}
    networks:
      - neko-master-network

  clickhouse:
    image: clickhouse/clickhouse-server:24.8
    container_name: neko-master-clickhouse
    restart: unless-stopped
    profiles: ["clickhouse"]
    ports:
      - "${CH_EXTERNAL_HTTP_PORT:-8123}:8123"
      - "${CH_EXTERNAL_NATIVE_PORT:-9000}:9000"
    volumes:
      - ./data/clickhouse:/var/lib/clickhouse
    environment:
      - CLICKHOUSE_DB=${CH_DATABASE:-neko_master}
      - CLICKHOUSE_USER=${CH_USER:-neko}
      - CLICKHOUSE_PASSWORD=${CH_PASSWORD:-neko_master}
      - CLICKHOUSE_DEFAULT_ACCESS_MANAGEMENT=1
    networks:
      - neko-master-network
    healthcheck:
      test: ["CMD-SHELL", "wget -q --spider http://127.0.0.1:8123/ping || exit 1"]
      interval: 30s
      timeout: 10s
      retries: 3
      start_period: 40s

networks:
  neko-master-network:
    driver: bridge

Step 2: Configure environment variables

Add to your .env (same directory as docker-compose.yml):

env
# Enable ClickHouse connection
CH_ENABLED=1

# Enable dual-write
CH_WRITE_ENABLED=1

# Read source: sqlite (default) / auto (smart routing) / clickhouse (force)
STATS_QUERY_SOURCE=auto

# ClickHouse connection (defaults match docker-compose.yml, no change needed)
CH_HOST=clickhouse
CH_PORT=8123
CH_DATABASE=neko_master
CH_USER=neko
CH_PASSWORD=neko_master

Restart:

bash
docker compose --profile clickhouse up -d

ClickHouse Environment Variables

VariableDefaultDescription
CH_ENABLED0Enable ClickHouse connection (1 to enable)
CH_WRITE_ENABLED0Enable dual-write (requires CH_ENABLED=1)
CH_ONLY_MODE0When CH is healthy, skip SQLite stats writes (CH-only mode)
CH_HOSTclickhouseClickHouse host address
CH_PORT8123ClickHouse HTTP port
CH_DATABASEneko_masterDatabase name
CH_USERnekoUsername
CH_PASSWORDneko_masterPassword
CH_SECURE0Use HTTPS connection
CH_REQUIRED0Refuse to start if CH is unavailable
CH_AUTO_CREATE_TABLES1Auto-create tables on first start
CH_WRITE_MAX_PENDING_BATCHES200Max pending write batches
CH_UNHEALTHY_THRESHOLD5Consecutive failures before marking unhealthy (auto-fallback to SQLite)
STATS_QUERY_SOURCEsqliteRead source: sqlite / auto / clickhouse
CH_COMPARE_ENABLED0Enable SQLite ↔ ClickHouse consistency check
CH_EXTERNAL_HTTP_PORT8123ClickHouse HTTP external port (Compose mapping)
CH_EXTERNAL_NATIVE_PORT

镜像拉取方式

您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。

轩辕镜像加速拉取命令点我查看更多 neko-master 镜像标签

docker pull docker.xuanyuan.run/foru17/neko-master:<标签>

使用方法:

  • 登录认证方式
  • 免认证方式

DockerHub 原生拉取命令

docker pull foru17/neko-master:<标签>

轩辕镜像配置手册

按平台快速找到配置文档

Docker

登录仓库拉取

登录认证 · 私有仓库

专属域名拉取

免登录 · 高速拉取

Linux

Docker 镜像配置

Windows / Mac

Docker Desktop 配置

MacOS OrbStack

OrbStack 容器

Apple Container

macOS 原生容器

Docker Compose

Compose 项目配置

NAS

群晖

Synology 配置

飞牛

fnOS 镜像配置

绿联

绿联 NAS

威联通

QNAP 配置

极空间

极空间 NAS

Unraid

Unraid NAS

企业仓库

其他仓库

ghcr · Quay · nvcr

Harbor 镜像源

Proxy Repository 对接

Portainer 镜像源

Registries 配置

Nexus 镜像源

Docker Proxy 缓存

开发工具

Dev Containers

VS Code 开发容器

Podman

Podman 配置指南

Singularity / Apptainer

HPC 科学计算容器

Kubernetes

K8s Containerd

Kubernetes · Containerd

K3s

轻量级集群

面板 / 网络

爱快路由

iKuai 镜像加速

宝塔面板

一键配置镜像源

AI

用 AI 使用轩辕镜像

agents.md · AI 对话 · 提示词

一键安装

一键安装 Docker

Linux Docker 一键安装

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

镜像拉取常见问题

功能

版本功能对比

功能对比 · 版本选择

支持的镜像仓库

Docker Hub · GCR · GHCR

新手拉取配置

登录 · 专属域名 · 配置

docker search 限制

专属域名 · Hub 搜索

不支持 push

仅支持 pull · 不支持

拉取速度原因

带宽 · 缓存 · 冷热镜像

错误码

402 与流量用尽

402 · 流量包 · 充值

401 认证失败

401 · docker login

manifest unknown

标签错误 · 镜像不存在

410 Gone 排查

410 · Docker 升级

429 限流

免费版 · 请求频率

其他报错

DNS 超时

DNS 解析 · 网络超时

TLS 证书失败

no matching manifest(架构)

账号

失败是否计费

manifest · blob · 计费

申请开发票(企业 / 个人)

企业 · 个人 · 工单

修改登录密码

网站 · 仓库 · 重置

注销账户

工单 · 数据 · 注销

原理

mirrors 不生效

daemon.json · 重启

去掉域名前缀

docker tag · 重命名

指定架构拉取

ARM64 · AMD64 · 多架构

latest 与「最新」

digest · 版本号 · 标签

查看全部问题→

用户好评

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

用户头像

oldzhang

运维工程师

Linux服务器

5

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

轩辕镜像
镜像详情
...
foru17/neko-master
教程轩辕镜像功能与使用教程
定价查看流量套餐与价格
热门查看热门 Docker 镜像推荐
博客Docker 镜像公告与技术博客
专业版 · 高速稳定拉取镜像
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
50GB 仅 ¥7/年
专业版 · 高速稳定拉取镜像
50GB 仅 ¥7/年
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
商务合作:点击复制邮箱
用户协议·隐私政策·©2024-2026 源码跳动
用户协议·隐私政策©2024-2026 杭州源码跳动科技有限公司商务合作:点击复制邮箱

更多 neko-master 镜像推荐

elestio/neko logo

elestio/neko

elestio
Neko是由Elestio验证和打包的n.eko房间管理系统,作为自托管的rabb.it替代品,提供简单的房间管理功能,支持多用户共享和互动。
3 次收藏1万+ 次下载
1 个月前更新
rancher/mesos-master logo

rancher/mesos-master

rancher
暂无描述
1 次收藏10万+ 次下载
9 年前更新
rancher/build-master logo

rancher/build-master

rancher
暂无描述
5万+ 次下载
10 年前更新
rancher/jenkins-master logo

rancher/jenkins-master

rancher
Jenkins Server是开源的持续集成/持续部署(CI/CD)自动化服务器,用于自动化软件项目的构建、测试和部署流程,提升开发效率与交付质量。
3 次收藏1万+ 次下载
9 年前更新
intel/evi-fm-master logo

intel/evi-fm-master

intel
暂无描述
2.9千+ 次下载
1 年前更新
intel/fm-master logo

intel/fm-master

intel
暂无描述
2.9千+ 次下载
3 年前更新

查看更多 neko-master 相关镜像