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

交易
充值流量我的订单
工具
提交工单页面收录一键安装
Npm 源Pip 源Homebrew 源
帮助
常见问题轩辕镜像免费版
其他
关于我们网站地图
热门搜索:
firecrawl

mcp/firecrawl

mcp(Model Context Protocol)

官方Firecrawl MCP服务器,为Cursor、Claude等工具提供强大的网页抓取与搜索功能。

18 次收藏下载次数: 0状态:社区镜像维护者:mcp(Model Context Protocol)仓库类型:镜像最近更新:13 天前
让 AI 帮你使用轩辕镜像? · 展开查看说明

如果你用 DeepSeek、元宝AI、Copilot 等 AI 代为编写轩辕镜像的 docker pull、修改 compose 镜像地址,或排查拉取失败等问题,请让 AI 先读规则再动手,只要在 AI 对话里直接发送下面这句话即可:

生成 docker pull、修改 compose 的 image,或排查拉取失败前,请先阅读并严格遵守 https://xuanyuan.cloud/agents.md 中的规则。

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

使用轩辕镜像,把时间还给真正重要的事。点击查看
DockerHub 官方简介
轩辕镜像中文简介
标签下载
镜像标签列表与下载命令
使用轩辕镜像,把时间还给真正重要的事。点击查看

Firecrawl MCP Server

🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.

What is an MCP Server?

MCP Info

AttributeDetails
Docker Imagehttps://hub.docker.com/repository/docker/mcp/firecrawl
Authorhttps://github.com/firecrawl
Repositoryhttps://github.com/mendableai/firecrawl-mcp-server

Image Building Info

AttributeDetails
Dockerfilehttps://github.com/mendableai/firecrawl-mcp-server/blob/869cab1def77281f0c2e271be85d534d11ba137b/Dockerfile
Commit869cab1def77281f0c2e271be85d534d11ba137b
Docker Image built byDocker Inc.
Docker Scout Health Score!Docker Scout Health Score
Verify SignatureCOSIGN_REPOSITORY=mcp/signatures cosign verify mcp/firecrawl --key https://raw.githubusercontent.com/docker/keyring/refs/heads/main/public/mcp/latest.pub
LicenceMIT License

Available Tools (24)

Tools provided by this ServerShort Description
firecrawl_agentStart a research agent
firecrawl_agent_statusGet agent job status
firecrawl_browser_createCreate browser session
firecrawl_browser_deleteDelete browser session
firecrawl_browser_executeRun code in browser session
firecrawl_browser_listList browser sessions
firecrawl_check_crawl_statusGet crawl status
firecrawl_crawlStart a site crawl
firecrawl_extractExtract structured data
firecrawl_interactInteract with a scraped page
firecrawl_interact_stopStop interact session
firecrawl_mapMap a website
firecrawl_monitor_checkGet monitor check
firecrawl_monitor_checksList monitor checks
firecrawl_monitor_createCreate monitor
firecrawl_monitor_deleteDelete monitor
firecrawl_monitor_getGet monitor
firecrawl_monitor_listList monitors
firecrawl_monitor_runRun monitor now
firecrawl_monitor_updateUpdate monitor
firecrawl_parseParse a local file
firecrawl_scrapeScrape a URL
firecrawl_searchSearch the web
firecrawl_search_feedbackSend feedback on a search result

Tools Details

Tool: firecrawl_agent

Autonomous web research agent. This is a separate AI agent layer that independently browses the internet, searches for information, navigates through pages, and extracts structured data based on your query. You describe what you need, and the agent figures out where to find it.

How it works: The agent performs web searches, follows links, reads pages, and gathers data autonomously. This runs asynchronously - it returns a job ID immediately, and you poll firecrawl_agent_status to check when complete and retrieve results.

IMPORTANT - Async workflow with patient polling:

  1. Call firecrawl_agent with your prompt/schema → returns job ID immediately
  2. Poll firecrawl_agent_status with the job ID to check progress
  3. Keep polling for at least 2-3 minutes - agent research typically takes 1-5 minutes for complex queries
  4. Poll every 15-30 seconds until status is "completed" or "failed"
  5. Do NOT give up after just a few polling attempts - the agent needs time to research

Expected wait times:

  • Simple queries with provided URLs: 30 seconds - 1 minute
  • Complex research across multiple sites: 2-5 minutes
  • Deep research tasks: 5+ minutes

Best for: Complex research tasks where you don't know the exact URLs; multi-source data gathering; finding information scattered across the web; extracting data from JavaScript-heavy SPAs that fail with regular scrape. Not recommended for:

  • Single-page extraction when you have a URL (use firecrawl_scrape, faster and cheaper)
  • Web search (use firecrawl_search first)
  • Interactive page tasks like clicking, filling forms, login, or navigating JS-heavy SPAs (use firecrawl_scrape + firecrawl_interact)
  • Extracting specific data from a known page (use firecrawl_scrape with JSON format)

Arguments:

  • prompt: Natural language description of the data you want (required, max 10,000 characters)
  • urls: Optional array of URLs to focus the agent on specific pages
  • schema: Optional JSON schema for structured output

Prompt Example: "Find the founders of Firecrawl and their backgrounds" Usage Example (start agent, then poll patiently for results):

json
{
  "name": "firecrawl_agent",
  "arguments": {
    "prompt": "Find the top 5 AI startups founded in 2024 and their funding amounts",
    "schema": {
      "type": "object",
      "properties": {
        "startups": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "name": { "type": "string" },
              "funding": { "type": "string" },
              "founded": { "type": "string" }
            }
          }
        }
      }
    }
  }
}

Then poll with firecrawl_agent_status every 15-30 seconds for at least 2-3 minutes.

Usage Example (with URLs - agent focuses on specific pages):

json
{
  "name": "firecrawl_agent",
  "arguments": {
    "urls": ["https://docs.firecrawl.dev", "https://firecrawl.dev/pricing"],
    "prompt": "Compare the features and pricing information from these pages"
  }
}

Returns: Job ID for status checking. Use firecrawl_agent_status to poll for results.

ParametersTypeDescription
promptstring
schemaobject optional
urlsarray optional

This tool interacts with external entities.


Tool: firecrawl_agent_status

Check the status of an agent job and retrieve results when complete. Use this to poll for results after starting an agent with firecrawl_agent.

IMPORTANT - Be patient with polling:

  • Poll every 15-30 seconds
  • Keep polling for at least 2-3 minutes before ***ing the request failed
  • Complex research can take 5+ minutes - do not give up early
  • Only stop polling when status is "completed" or "failed"

Usage Example:

json
{
  "name": "firecrawl_agent_status",
  "arguments": {
    "id": "550e8400-e29b-41d4-a716-446655440000"
  }
}

Possible statuses:

  • processing: Agent is still researching - keep polling, do not give up
  • completed: Research finished - response includes the extracted data
  • failed: An error occurred (only stop polling on this status)

Returns: Status, progress, and results (if completed) of the agent job.

ParametersTypeDescription
idstring

This tool is read-only. It does not modify its environment.


Tool: firecrawl_browser_create

DEPRECATED — prefer firecrawl_scrape + firecrawl_interact instead. Interact lets you scrape a page and then click, fill forms, and navigate without managing sessions manually.

Create a browser session for code execution via CDP (Chrome DevTools Protocol).

Arguments:

  • ttl: Total session lifetime in seconds (30-3600, optional)
  • activityTtl: Idle timeout in seconds (10-3600, optional)
  • streamWebView: Whether to enable live view streaming (optional)
  • profile: Save and reuse browser state (cookies, localStorage) across sessions (optional)
    • name: Profile name (sessions with the same name share state)
    • saveChanges: Whether to save changes back to the profile (default: true)

Usage Example:

json
{
  "name": "firecrawl_browser_create",
  "arguments": {
    "profile": { "name": "my-profile", "saveChanges": true }
  }
}

Returns: Session ID, CDP URL, and live view URL.

ParametersTypeDescription
activityTtlnumber optional
profileobject optional
streamWebViewboolean optional
ttlnumber optional

Tool: firecrawl_browser_delete

DEPRECATED — prefer firecrawl_scrape + firecrawl_interact instead.

Destroy a browser session.

Usage Example:

json
{
  "name": "firecrawl_browser_delete",
  "arguments": {
    "sessionId": "session-id-here"
  }
}

Returns: Success confirmation.

ParametersTypeDescription
sessionIdstring

This tool may perform destructive updates.


Tool: firecrawl_browser_execute

DEPRECATED — prefer firecrawl_scrape + firecrawl_interact instead. Interact lets you scrape a page and then click, fill forms, and navigate without managing sessions manually.

Execute code in a browser session. Supports agent-browser commands (bash), Python, or JavaScript. Requires: An active browser session (create one with firecrawl_browser_create first).

Arguments:

  • sessionId: The browser session ID (required)
  • code: The code to execute (required)
  • language: "bash", "python", or "node" (optional, defaults to "bash")

Recommended: Use bash with agent-browser commands (pre-installed in every sandbox):

json
{
  "name": "firecrawl_browser_execute",
  "arguments": {
    "sessionId": "session-id-here",
    "code": "agent-browser open https://example.com",
    "language": "bash"
  }
}

Common agent-browser commands:

  • agent-browser open <url> — Navigate to URL
  • agent-browser snapshot — Get accessibility tree with clickable refs (for AI)
  • agent-browser snapshot -i -c — Interactive elements only, compact
  • agent-browser click @e5 — Click element by ref from snapshot
  • agent-browser type @e3 "text" — Type into element
  • agent-browser fill @e3 "text" — Clear and fill element
  • agent-browser get text @e1 — Get text content
  • agent-browser get title — Get page title
  • agent-browser get url — Get current URL
  • agent-browser screenshot [path] — Take screenshot
  • agent-browser scroll down — Scroll page
  • agent-browser wait 2000 — Wait 2 seconds
  • agent-browser --help — Full command reference

For Playwright scripting, use Python (has proper async/await support):

json
{
  "name": "firecrawl_browser_execute",
  "arguments": {
    "sessionId": "session-id-here",
    "code": "await page.goto('https://example.com')\ntitle = await page.title()\nprint(title)",
    "language": "python"
  }
}

Note: Prefer bash (agent-browser) or Python. Returns: Execution result including stdout, stderr, and exit code.

ParametersTypeDescription
codestring
sessionIdstring
languagestring optional

This tool may perform destructive updates.


Tool: firecrawl_browser_list

DEPRECATED — prefer firecrawl_scrape + firecrawl_interact instead.

List browser sessions, optionally filtered by status.

Usage Example:

json
{
  "name": "firecrawl_browser_list",
  "arguments": {
    "status": "active"
  }
}

Returns: Array of browser sessions.

ParametersTypeDescription
statusstring optional

This tool is read-only. It does not modify its environment.


Tool: firecrawl_check_crawl_status

Check the status of a crawl job.

Usage Example:

json
{
  "name": "firecrawl_check_crawl_status",
  "arguments": {
    "id": "550e8400-e29b-41d4-a716-446655440000"
  }
}

Returns: Status and progress of the crawl job, including results if available.

ParametersTypeDescription
idstring

This tool is read-only. It does not modify its environment.


Tool: firecrawl_crawl

Starts a crawl job on a website and extracts content from all pages.

Best for: Extracting content from multiple related pages, when you need comprehensive coverage. Not recommended for: Extracting content from a single page (use scrape); when token limits are a concern (use map + batch_scrape); when you need fast results (crawling can be slow). Warning: Crawl responses can be very large and may exceed token limits. Limit the crawl depth and number of pages, or use map + batch_scrape for better control. Common mistakes: Setting limit or maxDiscoveryDepth too high (causes token overflow) or too low (causes missing pages); using crawl for a single page (use scrape instead). Using a /* wildcard is not recommended. Prompt Example: "Get all blog posts from the first two levels of example.com/blog." Usage Example:

json
{
  "name": "firecrawl_crawl",
  "arguments": {
    "url": "https://example.com/blog/*",
    "maxDiscoveryDepth": 5,
    "limit": 20,
    "allowExternalLinks": false,
    "deduplicateSimilarURLs": true,
    "sitemap": "include"
  }
}

Returns: Operation ID for status checking; use firecrawl_check_crawl_status to check progress.

ParametersTypeDescription
urlstring
allowExternalLinksboolean optional
allowSubdomainsboolean optional
crawlEntireDomainboolean optional
deduplicateSimilarURLsboolean optional
delaynumber optional
excludePathsarray optional
ignoreQueryParametersboolean optional
includePathsarray optional
limitnumber optional
maxConcurrencynumber optional
maxDiscoveryDepthnumber optional
promptstring optional
scrapeOptionsobject optional
sitemapstring optional
webhookstring optional
webhookHeadersobject optional

This tool interacts with external entities.


Tool: firecrawl_extract

Extract structured information from web pages using LLM capabilities. Supports both cloud AI and self-hosted LLM extraction.

Best for: Extracting specific structured data like prices, names, details from web pages. Not recommended for: When you need the full content of a page (use scrape); when you're not looking for specific structured data. Arguments:

  • urls: Array of URLs to extract information from
  • prompt: Custom prompt for the LLM extraction
  • schema: JSON schema for structured data extraction
  • allowExternalLinks: Allow extraction from external links
  • enableWebSearch: Enable web search for additional context
  • includeSubdomains: Include subdomains in extraction Prompt Example: "Extract the product name, price, and description from these product pages." Usage Example:
json
{
  "name": "firecrawl_extract",
  "arguments": {
    "urls": ["https://example.com/page1", "https://example.com/page2"],
    "prompt": "Extract product information including name, price, and description",
    "schema": {
      "type": "object",
      "properties": {
        "name": { "type": "string" },
        "price": { "type": "number" },
        "description": { "type": "string" }
      },
      "required": ["name", "price"]
    },
    "allowExternalLinks": false,
    "enableWebSearch": false,
    "includeSubdomains": false
  }
}

Returns: Extracted structured data as defined by your schema.

ParametersTypeDescription
urlsarray
allowExternalLinksboolean optional
enableWebSearchboolean optional
includeSubdomainsboolean optional
promptstring optional
schemaobject optional

This tool is read-only. It does not modify its environment.

This tool interacts with external entities.


Tool: firecrawl_interact

Interact with a previously scraped page in a live browser session. Scrape a page first with firecrawl_scrape, then use the returned scrapeId to click buttons, fill forms, extract dynamic content, or navigate deeper.

Best for: Multi-step workflows on a single page — searching a site, clicking through results, filling forms, extracting data that requires interaction. Requires: A scrapeId from a previous firecrawl_scrape call (found in the metadata of the scrape response).

Arguments:

  • scrapeId: The scrape job ID from a previous scrape (required)
  • prompt: Natural language instruction describing the action to take (use this OR code)
  • code: Code to execute in the browser session (use this OR prompt)
  • language: "bash", "python", or "node" (optional, defaults to "node", only used with code)
  • timeout: Execution timeout in seconds, 1-300 (optional, defaults to 30)

Usage Example (prompt):

json
{
  "name": "firecrawl_interact",
  "arguments": {
    "scrapeId": "scrape-id-from-previous-scrape",
    "prompt": "Click on the first product and tell me its price"
  }
}

Usage Example (code):

json
{
  "name": "firecrawl_interact",
  "arguments": {
    "scrapeId": "scrape-id-from-previous-scrape",
    "code": "agent-browser click @e5",
    "language": "bash"
  }
}

Returns: Execution result including output, stdout, stderr, exit code, and live view URLs.

ParametersTypeDescription
scrapeIdstring
codestring optional
languagestring optional
promptstring optional
timeoutnumber optional

This tool interacts with external entities.


Tool: firecrawl_interact_stop

Stop an interact session for a scraped page. Call this when you are done interacting to free resources.

Usage Example:

json
{
  "name": "firecrawl_interact_stop",
  "arguments": {
    "scrapeId": "scrape-id-here"
  }
}

Returns: Success confirmation.

ParametersTypeDescription
scrapeIdstring

This tool may perform destructive updates.


Tool: firecrawl_map

Map a website to discover all indexed URLs on the site.

Best for: Discovering URLs on a website before deciding what to scrape; finding specific sections or pages within a large site; locating the correct page when scrape returns empty or incomplete results. Not recommended for: When you already know which specific URL you need (use scrape); when you need the content of the pages (use scrape after mapping). Common mistakes: Using crawl to discover URLs instead of map; jumping straight to firecrawl_agent when scrape fails instead of using map first to find the right page.

IMPORTANT - Use map before agent: If firecrawl_scrape returns empty, minimal, or irrelevant content, use firecrawl_map with the search parameter to find the specific page URL containing your target content. This is faster and cheaper than using firecrawl_agent. Only use the agent as a last resort after map+scrape fails.

Prompt Example: "Find the webhook documentation page on this API docs site." Usage Example (discover all URLs):

json
{
  "name": "firecrawl_map",
  "arguments": {
    "url": "https://example.com"
  }
}

Usage Example (search for specific content - RECOMMENDED when scrape fails):

json
{
  "name": "firecrawl_map",
  "arguments": {
    "url": "https://docs.example.com/api",
    "search": "webhook events"
  }
}

Returns: Array of URLs found on the site, filtered by search query if provided.

ParametersTypeDescription
urlstring
ignoreQueryParametersboolean optional
includeSubdomainsboolean optional
limitnumber optional
searchstring optional
sitemapstring optional

This tool is read-only. It does not modify its environment.

This tool interacts with external entities.


Tool: firecrawl_monitor_check

Get a single check with page-level diff results. Filter pageStatus to surface only the pages that changed (or were new, removed, etc.).

Each entry in data.pages[] has url, status (same | new | changed | removed | error), and — when changed — a diff and possibly a snapshot. The shape of diff depends on the monitor's formats configuration:

  • Markdown mode (default). diff.text is the unified markdown diff; diff.json is a parse-diff AST ({ files: [...] }). No snapshot.
  • JSON mode (changeTracking with modes: ["json"]). diff.json is a per-field map keyed by JSON path into the extraction, e.g. plans[0].price, with each value being { previous, current }. snapshot.json is the full current extraction. No diff.text.
  • Mixed mode (modes: ["json", "git-diff"]). Both diff.text (markdown sidecar) AND diff.json (per-field map) are present, plus snapshot.json.

Example JSON-mode response pages[] entry:

json
{
  "url": "https://example.com/pricing",
  "status": "changed",
  "diff": {
    "json": {
      "plans[0].price":       { "previous": "$19/mo",        "current": "$24/mo" },
      "plans[1].features[2]": { "previous": "10 GB storage", "current": "25 GB storage" }
    }
  },
  "snapshot": { "json": { "plans": [/* current full extraction matching the monitor's schema */] } }
}

When summarizing a check for the user, prefer diff.json paths (e.g. "plans[0].price changed from $19/mo to $24/mo") over re-printing the markdown diff — it's more concise and grounded in the schema fields they asked for.

The endpoint paginates via a top-level next URL; this tool returns one page at a time. Increase limit (max 100) to fetch fewer pages.

Usage Example:

json
{
  "name": "firecrawl_monitor_check",
  "arguments": {
    "id": "mon_abc123",
    "checkId": "chk_xyz",
    "pageStatus": "changed"
  }
}
ParametersTypeDescription
checkIdstring
idstring
limitinteger optional
pageStatusstring optional
skipinteger optional

This tool is read-only. It does not modify its environment.


Tool: firecrawl_monitor_checks

List historical checks for a monitor.

Usage Example:

json
{ "name": "firecrawl_monitor_checks", "arguments": { "id": "mon_abc123", "limit": 10 } }
ParametersTypeDescription
idstring
limitinteger optional
offsetinteger optional

This tool is read-only. It does not modify its environment.


Tool: firecrawl_monitor_create

Create a Firecrawl monitor — a recurring scrape or crawl that diffs each result against the last retained snapshot.

Pass the full request body. Required fields: name, schedule (with cron or text), and targets (one or more { type: 'scrape', urls: [...] } or { type: 'crawl', url: '...' }). Optional: webhook, notification, retentionDays.

Markdown-mode (default): Each check produces a unified text diff of the page's markdown. No extra configuration needed.

json
{
  "name": "firecrawl_monitor_create",
  "arguments": {
    "body": {
      "name": "Blog watch",
      "schedule": { "text": "every 30 minutes", "timezone": "UTC" },
      "targets": [{ "type": "scrape", "urls": ["https://example.com/blog"] }],
      "notification": { "email": { "enabled": true, "recipients": ["a@b.com"] } }
    }
  }
}

JSON-mode change tracking: To detect changes in specific structured fields (price, headline, in-stock flag, list items) instead of the whole page, add a changeTracking format with modes: ["json"] and a JSON schema to the target's scrapeOptions.formats. The check response will then carry a per-field diff (keyed by JSON path, e.g. plans[0].price) and a snapshot.json with the full current extraction. See firecrawl_monitor_check for the response shape.

json
{
  "name": "firecrawl_monitor_create",
  "arguments": {
    "body": {
      "name": "Pricing watch",
      "schedule": { "text": "hourly", "timezone": "UTC" },
      "targets": [{
        "type": "scrape",
        "urls": ["https://example.com/pricing"],
        "scrapeOptions": {
          "formats": [{
            "type": "changeTracking",
            "modes": ["json"],
            "prompt": "Extract pricing tiers and headline features for each plan.",
            "schema": {
              "type": "object",
              "properties": {
                "plans": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "name":     { "type": "string" },
                      "price":    { "type": "string" },
                      "features": { "type": "array", "items": { "type": "string" } }
                    }
                  }
                }
              }
            }
          }]
        }
      }]
    }
  }
}

Mixed mode (JSON + git-diff): Use modes: ["json", "git-diff"] to get both per-field diffs and a markdown sidecar. The page is marked changed whenever either surface changed.

ParametersTypeDescription
bodyobject

This tool interacts with external entities.


Tool: firecrawl_monitor_delete

Permanently delete a monitor and stop its schedule. This cannot be undone.

Usage Example:

json
{ "name": "firecrawl_monitor_delete", "arguments": { "id": "mon_abc123" } }
ParametersTypeDescription
idstring

This tool may perform destructive updates.

This tool interacts with external entities.


Tool: firecrawl_monitor_get

Get a single monitor by ID.

Usage Example:

json
{ "name": "firecrawl_monitor_get", "arguments": { "id": "mon_abc123" } }
ParametersTypeDescription
idstring

This tool is read-only. It does not modify its environment.


Tool: firecrawl_monitor_list

List all Firecrawl monitors for the authenticated account.

Usage Example:

json
{ "name": "firecrawl_monitor_list", "arguments": { "limi

[...]

镜像拉取方式

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

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

docker pull docker.xuanyuan.run/mcp/firecrawl:<标签>

使用方法:

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

DockerHub 原生拉取命令

docker pull mcp/firecrawl:<标签>

更多 firecrawl 镜像推荐

ericwong/firecrawl logo

ericwong/firecrawl

ericwong
Firecrawl项目的API服务Docker镜像,用于构建和部署Firecrawl的API应用,支持通过Docker快速部署该服务,基于项目的apps/api目录构建。
1 次收藏1万+ 次下载
1 个月前更新
trieve/firecrawl logo

trieve/firecrawl

trieve
暂无描述
1万+ 次下载
1 年前更新
bonkboykz/firecrawl logo

bonkboykz/firecrawl

bonkboykz
暂无描述
5.3千+ 次下载
7 个月前更新

查看更多 firecrawl 相关镜像

轩辕镜像配置手册

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

Docker 配置

登录仓库拉取

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

用 AI 使用轩辕镜像

发给 Cursor、ChatGPT、豆包等 AI 的说明文档

专属域名拉取

无需登录使用专属域名

K8s Containerd

Kubernetes 集群配置 Containerd

K3s

K3s 轻量级 Kubernetes 镜像加速

Dev Containers

VS Code Dev Containers 配置

Podman

Podman 容器引擎配置

Singularity/Apptainer

HPC 科学计算容器配置

其他仓库配置

ghcr、Quay、nvcr 等镜像仓库

Harbor 镜像源配置

Harbor Proxy Repository 对接专属域名

Portainer 镜像源配置

Portainer Registries 加速拉取

Nexus 镜像源配置

Nexus3 Docker Proxy 内网缓存

系统配置

Linux

在 Linux 系统配置镜像服务

Windows/Mac

在 Docker Desktop 配置镜像

MacOS OrbStack

MacOS OrbStack 容器配置

Docker Compose

Docker Compose 项目配置

NAS 设备

群晖

Synology 群晖 NAS 配置

飞牛

飞牛 fnOS 系统配置镜像

绿联

绿联 NAS 系统配置镜像

威联通

QNAP 威联通 NAS 配置

极空间

极空间 NAS 系统配置服务

网络设备

爱快路由

爱快 iKuai 路由系统配置

宝塔面板

在宝塔面板一键配置镜像

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

镜像拉取常见问题

使用与功能问题

配置了专属域名后,docker search 为什么会报错?

docker search 限制

Docker Hub 上有的镜像,为什么在轩辕镜像网站搜不到?

站内搜不到镜像

机器不能直连外网时,怎么用 docker save / load 迁镜像?

离线 save/load

docker pull 拉插件报错(plugin v1+json)怎么办?

插件要用 plugin install

WSL 里 Docker 拉镜像特别慢,怎么排查和优化?

WSL 拉取慢

轩辕镜像安全吗?如何用 digest 校验镜像没被篡改?

安全与 digest

第一次用轩辕镜像拉 Docker 镜像,要怎么登录和配置?

新手拉取配置

轩辕镜像合规吗?轩辕镜像的合规是怎么做的?

镜像合规机制

轩辕镜像支持 docker push 上传本地镜像吗?

不支持 push

错误码与失败问题

docker pull 提示 manifest unknown 怎么办?

manifest unknown

docker pull 提示 no matching manifest 怎么办?

no matching manifest(架构)

镜像已拉取完成,却提示 invalid tar header 或 failed to register layer 怎么办?

invalid tar header(解压)

Docker pull 时 HTTPS / TLS 证书验证失败怎么办?

TLS 证书失败

Docker pull 时 DNS 解析超时或连不上仓库怎么办?

DNS 超时

docker 无法连接轩辕镜像域名怎么办?

域名连通性排查

Docker 拉取出现 410 Gone 怎么办?

410 Gone 排查

出现 402 或「流量用尽」提示怎么办?

402 与流量用尽

Docker 拉取提示 UNAUTHORIZED(401)怎么办?

401 认证失败

遇到 429 Too Many Requests(请求太频繁)怎么办?

429 限流

docker login 提示 Cannot autolaunch D-Bus,还算登录成功吗?

D-Bus 凭证提示

为什么会出现「单层超过 20GB」或 413,无法加速拉取?

413 与超大单层

账号 / 计费 / 权限

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

免费版与专业版区别

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

支持的镜像仓库

镜像拉取失败还会不会扣流量?

失败是否计费

麒麟 V10 / 统信 UOS 提示 KYSEC 权限不够怎么办?

KYSEC 拦截脚本

如何在轩辕镜像申请开发票?

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

怎么修改轩辕镜像的网站登录和仓库登录密码?

修改登录密码

如何注销轩辕镜像账户?要注意什么?

注销账户

配置与原理类

写了 registry-mirrors,为什么还是走官方或仍然报错?

mirrors 不生效

怎么用 docker tag 去掉镜像名里的轩辕域名前缀?

去掉域名前缀

如何拉取指定 CPU 架构的镜像(如 ARM64、AMD64)?

指定架构拉取

用轩辕镜像拉镜像时快时慢,常见原因有哪些?

拉取速度原因

为什么拉取镜像的 :latest 标签,拿到的往往不是「最新」镜像?

latest 与「最新」

查看全部问题→

用户好评

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

用户头像

oldzhang

运维工程师

Linux服务器

5

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

轩辕镜像
mcp(Model Context Protocol)
...
mcp/firecrawl
博客Docker 镜像公告与技术博客
热门查看热门 Docker 镜像推荐
安装一键安装 Docker 并配置镜像源
镜像拉取问题咨询请 提交工单。官方公众号:源码跳动。官方技术交流群:13763429。轩辕镜像所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
镜像拉取问题咨询请提交工单。官方公众号:源码跳动。官方技术交流群:。轩辕镜像所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
商务合作:点击复制邮箱
©2024-2026 源码跳动
商务合作:点击复制邮箱Copyright © 2024-2026 杭州源码跳动科技有限公司. All rights reserved.