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

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

官方QQ群: 1072982923

justlikemaki/aiclient-2-api Docker 镜像 - 轩辕镜像 | Docker 镜像高效稳定拉取服务

热门搜索:openclawnginxredismysqlopenjdkcursorweb2apimemgraphzabbixetcdubuntucorednsjdk
aiclient-2-api
justlikemaki/aiclient-2-api
justlikemaki
AIClient-2-API 将 Gemini CLI、Qwen Code、Kiro Claude 等仅限客户端的大模型接口统一为本地 OpenAI 兼容 API,支持多协议转换、账号池与 Web 管理台,便于 Cline、NextChat 等工具调用 Claude、Gemini、Qwen 等模型。
2 次收藏下载次数: 0状态:社区镜像维护者:justlikemaki仓库类型:镜像
轩辕镜像,快一点,稳很多。点击查看
版本下载
轩辕镜像,快一点,稳很多。点击查看

AIClient-2-API 🚀

A powerful proxy that can unify the requests of various large model APIs (Gemini CLI, Qwen Code Plus, Kiro Claude...) that are only used within the client into a local OpenAI compatible interface.

![License: GPL v3]([] ![Node.js]([] ![Docker]([***]

GITHUB | 📚 Complete Documentation

AIClient2API is an API proxy service that breaks through client limitations, converting free large models originally restricted to client use only (such as Gemini CLI, Qwen Code Plus, Kiro Claude) into standard OpenAI-compatible interfaces that can be called by any application. Built on Node.js, it supports intelligent conversion between three major protocols (OpenAI, Claude, Gemini), enabling tools like Cherry-Studio, NextChat, and Cline to freely use advanced models such as Claude Sonnet 4.5, Gemini 2.5 Flash, and Qwen3 Coder Plus at scale. The project adopts a modular architecture based on strategy and adapter patterns, with built-in account pool management, intelligent polling, automatic failover, and health check mechanisms, ensuring 99.9% service availability.

[!NOTE] 🎉 Important Milestone

  • Thanks to Ruan Yifeng for the recommendation in Weekly Issue 359

📅 Version Update Log

  • 2025.11.30 - Added Antigravity protocol support, enabling access to Gemini 3 Pro, Claude Sonnet 4.5, and other models via Google internal interfaces
  • 2025.11.16 - Added Ollama protocol support, unified interface to access all supported models (Claude, Gemini, Qwen, OpenAI, etc.)
  • 2025.11.11 - Added Web UI management console, supporting real-time configuration management and health status monitoring
  • 2025.11.06 - Added support for Gemini 3 Preview, enhanced model compatibility and performance optimization
  • 2025.10.18 - Kiro open registration, new accounts get 500 credits, full support for Claude Sonnet 4.5
  • 2025.09.01 - Integrated Qwen Code CLI, added qwen3-coder-plus model support
  • 2025.08.29 - Released account pool management feature, supporting multi-account polling, intelligent failover, and automatic degradation strategies
    • Configuration: Add PROVIDER_POOLS_FILE_PATH parameter in config.json
    • Reference configuration: provider_pools.json

💡 Core Advantages

🎯 Unified Access, One-Stop Management
  • Multi-Model Unified Interface: Through standard OpenAI-compatible protocol, configure once to access mainstream large models including Gemini, Claude, GPT, Qwen Code, Kimi K2, GLM-4.6
  • Flexible Switching Mechanism: Support dynamic model switching via startup parameters, Path routing, or environment variables to meet different scenario requirements
  • Zero-Cost Migration: Fully compatible with OpenAI API specifications, tools like Cherry-Studio, NextChat, Cline can be used without modification
  • Multi-Protocol Intelligent Conversion: Support intelligent conversion between OpenAI, Claude, and Gemini protocols for cross-protocol model invocation
    • Call Claude models using OpenAI protocol: Use claude-custom or claude-kiro-oauth providers
    • Call Gemini models using OpenAI protocol: Use gemini-cli-oauth provider
    • Call Gemini models using Claude protocol: Use gemini-cli-oauth provider
    • Call OpenAI models using Claude protocol: Use openai-custom or openai-qwen-oauth providers
🚀 Break Through Limitations, Improve Efficiency
  • Bypass Official Restrictions: Utilize OAuth authorization mechanism to effectively break through rate and quota limits of free APIs like Gemini
  • Free Advanced Models: Use Claude Sonnet 4.5 for free via Kiro API mode, use Qwen3 Coder Plus via Qwen OAuth mode, reducing usage costs
  • Intelligent Account Pool Scheduling: Support multi-account polling, automatic failover, and configuration degradation, ensuring 99.9% service availability
🛡️ Secure and Controllable, Data Transparent
  • Full* Log Recording**: Capture all request and response data, supporting auditing and debugging
  • Private Dataset Construction: Quickly build proprietary training datasets based on log data
  • System Prompt Management: Support override and append modes, achieving perfect combination of unified base instructions and personalized extensions
🔧 Developer-Friendly, Easy to Extend
  • Modular Architecture: Based on strategy and adapter patterns, adding new model providers requires only 3 steps
  • Complete Test Coverage: Integration and unit test coverage 90%+, ensuring code quality
  • Containerized Deployment: Provides Docker support, one-click deployment, cross-platform operation
  • MCP Protocol Support: Perfectly compatible with Model Context Protocol, easily extend functionality

📑 Quick Navigation

  • 🐳 Docker Deployment
  • 🎨 Model Protocol and Provider Relationship Diagram
  • 🔧 Usage Instructions
  • 🚀 Project Startup Parameters
  • 📄 Open Source License
  • 🙏 Acknowledgements
  • ⚠️ Disclaimer

🎨 Model Protocol and Provider Relationship Diagram

This project supports multiple model providers through different protocols. The following is an overview of their relationships:

  • OpenAI Protocol (P_OPENAI): Implemented by openai-custom, gemini-cli-oauth, claude-custom, claude-kiro-oauth, openai-qwen-oauth, and openaiResponses-custom model providers.
  • Claude Protocol (P_CLAUDE): Implemented by claude-custom, claude-kiro-oauth, gemini-cli-oauth, openai-custom, openai-qwen-oauth, and openaiResponses-custom model providers.
  • Gemini Protocol (P_GEMINI): Implemented by gemini-cli-oauth model provider.

Detailed relationship diagram:

mermaid
 
 graph TD
     subgraph Core_Protocols["Core Protocols"]
         P_OPENAI[OpenAI Protocol]
         P_GEMINI[Gemini Protocol]
         P_CLAUDE[Claude Protocol]
     end
 
     subgraph Supported_Model_Providers["Supported Model Providers"]
         MP_OPENAI[openai-custom]
         MP_GEMINI[gemini-cli-oauth]
         MP_CLAUDE_C[claude-custom]
         MP_CLAUDE_K[claude-kiro-oauth]
         MP_QWEN[openai-qwen-oauth]
         MP_OPENAI_RESP[openaiResponses-custom]
     end
 
     P_OPENAI ---|Support| MP_OPENAI
     P_OPENAI ---|Support| MP_QWEN
     P_OPENAI ---|Support| MP_GEMINI
     P_OPENAI ---|Support| MP_CLAUDE_C
     P_OPENAI ---|Support| MP_CLAUDE_K
     P_OPENAI ---|Support| MP_OPENAI_RESP
 
     P_GEMINI ---|Support| MP_GEMINI
 
     P_CLAUDE ---|Support| MP_CLAUDE_C
     P_CLAUDE ---|Support| MP_CLAUDE_K
     P_CLAUDE ---|Support| MP_GEMINI
     P_CLAUDE ---|Support| MP_OPENAI
     P_CLAUDE ---|Support| MP_QWEN
     P_CLAUDE ---|Support| MP_OPENAI_RESP
 
     style P_OPENAI fill:#f9f,stroke:#333,stroke-width:2px
     style P_GEMINI fill:#ccf,stroke:#333,stroke-width:2px
     style P_CLAUDE fill:#cfc,stroke:#333,stroke-width:2px


🔧 Usage Instructions

🚀 Quick Start with install-and-run Script

The easiest way to get started with AIClient-2-API is to use our automated installation and startup scripts. We provide both Linux/macOS and Windows versions:

For Linux/macOS Users
bash
# Make the script executable and run it
chmod +x install-and-run.sh
./install-and-run.sh
For Windows Users
cmd
# Run the batch file
install-and-run.bat
What the Script Does

The install-and-run script automatically:

  1. Checks Node.js Installation: Verifies Node.js is installed and provides download link if missing
  2. Dependency Management: Automatically installs npm dependencies if node_modules doesn't exist
  3. File Validation: Ensures all required project files are present
  4. Server Startup: Launches the API server on http://localhost:3000
  5. Web UI Access: Provides direct access to the management console
Script Output Example
========================================
  AI Client 2 API Quick Install Script
========================================

[Check] Checking if Node.js is installed...
✅ Node.js is installed, version: v20.10.0
✅ Found package.json file
✅ node_modules directory already exists
✅ Project file check completed

========================================
  Starting AI Client 2 API Server...
========================================

🌐 Server will start on http://localhost:3000
📖 Visit http://localhost:3000 to view management interface
⏹️  Press Ctrl+C to stop server

💡 Tip: The script will automatically install dependencies and start the server. If you encounter any issues, the script provides clear error messages and suggested solutions.


📋 Core Features
Web UI Management Console

!Web UI

A comprehensive web-based management interface offering:

📊 Dashboard: System overview, interactive routing examples, and client configuration guides

⚙️ Configuration: Real-time parameter modification for all providers (Gemini, OpenAI, Claude, Kiro, Qwen) with advanced settings and file upload support

🔗 Provider Pools: Monitor active connections, provider health statistics, and enable/disable providers

📁 Config Files: Centralized OAuth credential management with search, filtering, and file operations

📜 Logs: Real-time system and request logs with management controls

🔐 Login: Authentication required (default: admin123, modify via pwd file)

Access: http://localhost:3000 → Login → Sidebar navigation → Immediate effect changes

MCP Protocol Support

This project is fully compatible with Model Context Protocol (MCP), enabling seamless integration with MCP-supporting clients for powerful functional extensions.

Multimodal Input Capabilities

Supports various input types including images and documents, providing richer interactive experiences and more powerful application scenarios.

Latest Model Support

Seamlessly supports the following latest large models, simply configure the corresponding OpenAI or Claude compatible interface in config.json:

  • Kimi K2 - Moonshot AI's latest flagship model
  • GLM-4.5 - Zhipu AI's latest version
  • Qwen Code - Alibaba Tongyi Qianwen code-specific model
  • Gemini 3 - Google's latest preview model
  • Claude Sonnet 4.5 - Anthropic's latest flagship model

🔐 Authorization Configuration Guide
Gemini CLI OAuth Configuration
  1. Obtain OAuth Credentials: Visit Google Cloud Console to create a project and enable Gemini API
  2. First Authorization: After using Gemini service, the command line will print Google authorization page, copy the page to browser for authorization, then return to command line
  3. Credential Storage: After successful authorization, oauth_creds.json file will be automatically generated and saved to ~/.gemini directory
  4. Project Configuration: Need to provide a valid Google Cloud project ID, can be specified via startup parameter --project-id
Qwen Code OAuth Configuration
  1. First Authorization: After starting the service, the system will automatically open the authorization page in the browser
  2. Credential Storage: After successful authorization, oauth_creds.json file will be automatically generated and saved to ~/.qwen directory
  3. Recommended Parameters: Use official default parameters for best results
    json
    {
      "temperature": 0,
      "top_p": 1
    }
    
Kiro API Configuration
  1. Environment Preparation: Download and install Kiro client
  2. Complete Authorization: Log in to your account in the client to generate kiro-auth-token.json credential file
  3. Best Practice: Recommended to use with Claude Code for optimal experience
  4. Important Notice: Kiro service usage policy has been updated, please visit the official website for the latest usage restrictions and terms
Account Pool Management Configuration
  1. Create Pool Configuration File: Create a configuration file referencing provider_pools.json.example
  2. Configure Pool Parameter: Set PROVIDER_POOLS_FILE_PATH in config.json to point to the pool configuration file
  3. Startup Parameter Configuration: Use --provider-pools-file <path> parameter to specify the pool configuration file path
  4. Health Check: The system will automatically perform periodic health checks and remove unhealthy providers

🔄 Model Provider Switching

This project provides two flexible model switching methods to meet different usage scenario requirements.

Achieve instant switching by specifying provider identifier in API request path:

Route PathDescriptionUse Case
/claude-customUse Claude API from config fileOfficial Claude API calls
/claude-kiro-oauthAccess Claude via Kiro OAuthFree use of Claude Sonnet 4.5
/openai-customUse OpenAI provider to handle requestsStandard OpenAI API calls
/gemini-cli-oauthAccess via Gemini CLI OAuthBreak through Gemini free limits
/openai-qwen-oauthAccess via Qwen OAuthUse Qwen Code Plus
/openaiResponses-customOpenAI Responses APIStructured dialogue scenarios
/ollamaOllama API protocolUnified access to all supported models

Usage Examples:

bash
# Configure in programming agents like Cline, Kilo
API_ENDPOINT=http://localhost:3000/claude-kiro-oauth
 
# Direct API call
curl http://localhost:3000/gemini-cli-oauth/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{"model":"gemini-2.0-flash-exp","messages":[...]}'
Ollama Protocol Usage Examples

This project supports the Ollama protocol, allowing access to all supported models through a unified interface. The Ollama endpoint provides standard interfaces such as /api/tags, /api/chat, /api/generate, etc.

Ollama API Call Examples:

  1. List all available models:
bash
curl http://localhost:3000/ollama/api/tags
  1. Chat interface:
bash
curl http://localhost:3000/ollama/api/chat \
  -H "Content-Type: application/json" \
  -d '{
    "model": "[Claude] claude-sonnet-4.5",
    "messages": [
      {"role": "user", "content": "Hello"}
    ]
  }'
  1. Specify provider using model prefix:
  • [Kiro] - Access Claude models using Kiro API
  • [Claude] - Use official Claude API
  • [Gemini CLI] - Access via Gemini CLI OAuth
  • [OpenAI] - Use official OpenAI API
  • [Qwen CLI] - Access via Qwen OAuth

📁 Authorization File Storage Paths

Default storage locations for authorization credential files of each service:

ServiceDefault PathDescription
Gemini~/.gemini/oauth_creds.jsonOAuth authentication credentials
Kiro~/.aws/sso/cache/kiro-auth-token.jsonKiro authentication token
Qwen~/.qwen/oauth_creds.jsonQwen OAuth credentials
Antigravity~/.antigravity/oauth_creds.jsonAntigravity OAuth credentials

Note: ~ represents the user home directory (Windows: C:\Users\username, Linux/macOS: /home/username or /Users/username)

Custom Path: Can specify custom storage location via relevant parameters in configuration file or environment variables


🚀 Project Startup Parameters

This project supports rich command-line parameter configuration, allowing flexible adjustment of service behavior as needed. The following is a detailed explanation of all startup parameters, displayed in functional groups:

🔧 Server Configuration Parameters
ParameterTypeDefault ValueDescription
--hoststringlocalhostServer listening address
--portnumber3000Server listening port
--api-keystring***API key for authentication
🤖 Model Provider Configuration Parameters
ParameterTypeDefault ValueDescription
--model-providerstringgemini-cli-oauthAI model provider, optional values: openai-custom, claude-custom, gemini-cli-oauth, claude-kiro-oauth, openai-qwen-oauth, openaiResponses-custom, gemini-antigravity
🧠 OpenAI Compatible Provider Parameters
ParameterTypeDefault ValueDescription
--openai-api-keystringnullOpenAI API key (required when model-provider is openai-custom)
--openai-base-urlstringnullOpenAI API base URL (required when model-provider is openai-custom)
🖥️ Claude Compatible Provider Parameters
ParameterTypeDefault ValueDescription
--claude-api-keystringnullClaude API key (required when model-provider is claude-custom)
--claude-base-urlstringnullClaude API base URL (required when model-provider is claude-custom)
🔐 Gemini OAuth Authentication Parameters
ParameterTypeDefault ValueDescription
--gemini-oauth-creds-base64stringnullBase64 string of Gemini OAuth credentials (optional when model-provider is gemini-cli-oauth, choose one with --gemini-oauth-creds-file)
--gemini-oauth-creds-filestringnullGemini OAuth credentials JSON file path (optional when model-provider is gemini-cli-oauth, choose one with --gemini-oauth-creds-base64)
--project-idstringnullGoogle Cloud project ID (required when model-provider is gemini-cli-oauth)
🎮 Kiro OAuth Authentication Parameters
ParameterTypeDefault ValueDescription
--kiro-oauth-creds-base64stringnullBase64 string of Kiro OAuth credentials (optional when model-provider is claude-kiro-oauth, choose one with --kiro-oauth-creds-file)
--kiro-oauth-creds-filestringnullKiro OAuth credentials JSON file path (optional when model-provider is claude-kiro-oauth, choose one with --kiro-oauth-creds-base64)
🐼 Qwen OAuth Authentication Parameters
ParameterTypeDefault ValueDescription
--qwen-oauth-creds-filestringnullQwen OAuth credentials JSON file path (required when model-provider is openai-qwen-oauth)
🌌 Antigravity OAuth Authentication Parameters
ParameterTypeDefault ValueDescription
--antigravity-oauth-creds-filestringnullAntigravity OAuth credentials JSON file path (optional when model-provider is gemini-antigravity)
🔄 OpenAI Responses API Parameters
ParameterTypeDefault ValueDescription
--model-providerstringopenaiResponses-customModel provider, set to openaiResponses-custom when using OpenAI Responses API
--openai-api-keystringnullOpenAI API key (required when model-provider is openaiResponses-custom)
--openai-base-urlstringnullOpenAI API base URL (required when model-provider is openaiResponses-custom)
📝 System Prompt Configuration Parameters
ParameterTypeDefault ValueDescription
--system-prompt-filestringinput_system_prompt.txtSystem prompt file path
--system-prompt-modestringoverwriteSystem prompt mode, optional values: overwrite (override), append (append)
📊 Log Configuration Parameters
ParameterTypeDefault ValueDescription
--log-promptsstringnonePrompt log mode, optional values: console (console), file (file), none (none)
--prompt-log-base-namestringprompt_logPrompt log file base name
🔄 Retry Mechanism Parameters
ParameterTypeDefault ValueDescription
--request-max-retriesnumber3Maximum number of automatic retries when API requests fail
--request-base-delaynumber1000Base delay time (milliseconds) between automatic retries, delay increases after each retry
⏰ Scheduled Task Parameters
ParameterTypeDefault ValueDescription
--cron-near-minutesnumber15Interval time (minutes) for OAuth token refresh task schedule
--cron-refresh-tokenbooleantrueWhether to enable automatic OAuth token refresh task
🎯 Account Pool Configuration Parameters
ParameterTypeDefault ValueDescription
--provider-pools-filestringnullProvider account pool configuration file path
Usage Examples
bash
# Basic usage
node src/api-server.js

# Specify port and API key
node src/api-server.js --port 8080 --api-key my-secret-key

# Use OpenAI provider
node src/api-server.js --model-provider openai-custom --openai-api-key sk-xxx --openai-base-url [***]

# Use Claude provider
node src/api-server.js --model-provider claude-custom --claude-api-key sk-ant-xxx --claude-base-url [***]

# Use OpenAI Responses API provider
node src/api-server.js --model-provider openaiResponses-custom --openai-api-key sk-xxx --openai-base-url [***]

# Use Gemini provider (Base64 credentials)
node src/api-server.js --model-provider gemini-cli-oauth --gemini-oauth-creds-base64 eyJ0eXBlIjoi... --project-id your-project-id

# Use Gemini provider (credentials file)
node src/api-server.js --model-provider gemini-cli-oauth --gemini-oauth-creds-file /path/to/credentials.json --project-id your-project-id

# Configure system prompt
node src/api-server.js --system-prompt-file custom-prompt.txt --system-prompt-mode append

# Configure logging
node src/api-server.js --log-prompts console
node src/api-server.js --log-prompts file --prompt-log-base-name my-logs

# Configure Account Pool
node src/api-server.js --provider-pools-file ./provider_pools.json

# Complete example
node src/api-server.js \
  --host 0.0.0.0 \
  --port 3000 \
  --api-key my-secret-key \
  --model-provider gemini-cli-oauth \
  --project-id my-gcp-project \
  --gemini-oauth-creds-file ./credentials.json \
  --system-prompt-file ./custom-system-prompt.txt \
  --system-prompt-mode overwrite \
  --log-prompts file \
  --prompt-log-base-name api-logs \
  --provider-pools-file ./provider_pools.json

📄 Open Source License

This project operates under the GNU General Public License v3 (GPLv3). For complete details, please refer to the LICENSE file located in the root directory.

🙏 Acknowledgements

The development of this project was significantly inspired by the official Google Gemini CLI and incorporated some code implementations from Cline 3.18.0's gemini-cli.ts. We extend our sincere gratitude to the official Google team and the Cline development team for their exceptional work!

Contributor List

Thanks to all the developers who contributed to the AIClient-2-API project:

![Contributors]([***]

🌟 Star History

![Star History Chart]([***]

Deployment & Usage Documentation

飞书/钉钉/QQ 机器人一站式搞定!OpenClaw Docker 部署教程

OpenClaw 中国 IM 插件整合版 Docker 镜像,预装并配置了飞书、钉钉、QQ机器人、企业微信等主流中国 IM 平台插件,让您可以快速部署一个支持多个中国 IM 平台的 AI 机器人网关。 同时集成了OpenCode AI代码助手、Playwright浏览器自动化工具及中文TTS语音合成功能,适用于需要构建多平台IM机器人的开发者与科研用户。 本指南将详细介绍其Docker部署流程,包括环境准备、镜像拉取、容器配置、功能测试及生产环境优化建议,帮助用户快速实现服务部署与应用。

Read More
查看更多 aiclient-2-api 相关镜像 →
justlikemaki/openclaw-docker-cn-im logo
justlikemaki/openclaw-docker-cn-im
justlikemaki
OpenClaw 的中国 IM 平台整合 Docker 版本,预装飞书、钉钉、QQ 机器人、企业微信等通道,并可通过 OpenAI/Claude 协议对接 AIClient-2-API 等后端服务,用于快速搭建多 IM 入口的 AI 机器人网关。
2 次收藏1万+ 次下载
17 天前更新

轩辕镜像配置手册

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

Docker 配置

登录仓库拉取

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

专属域名拉取

无需登录使用专属域名

K8s Containerd

Kubernetes 集群配置 Containerd

K3s

K3s 轻量级 Kubernetes 镜像加速

Dev Containers

VS Code Dev Containers 配置

Podman

Podman 容器引擎配置

Singularity/Apptainer

HPC 科学计算容器配置

其他仓库配置

ghcr、Quay、nvcr 等镜像仓库

系统配置

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 Hub 查询

docker search 报错问题

网页搜不到镜像:Docker Hub 有但轩辕镜像搜索无结果

镜像搜索不到

离线传输镜像:无法直连时用 docker save/load 迁移

离线传输镜像

Docker 插件安装错误:application/vnd.docker.plugin.v1+json

Docker 插件安装错误

WSL 下 Docker 拉取慢:网络与挂载目录影响及优化

WSL 拉取镜像慢

轩辕镜像是否安全?镜像完整性校验(digest)说明

镜像安全性

如何用轩辕镜像拉取镜像?登录方式与专属域名配置

如何拉取镜像

错误码与失败问题

manifest unknown 错误:镜像不存在或标签错误

manifest unknown 错误

TLS/SSL 证书验证失败:Docker pull 时 HTTPS 证书错误

TLS 证书验证失败

DNS 解析超时:无法解析镜像仓库地址或连接超时

DNS 解析超时

410 Gone 错误:Docker 版本过低导致协议不兼容

410 错误:版本过低

402 Payment Required 错误:流量耗尽错误提示

402 错误:流量耗尽

401 UNAUTHORIZED 错误:身份认证失败或登录信息错误

身份认证失败错误

429 Too Many Requests 错误:请求频率超出专业版限制

429 限流错误

Docker login 凭证保存错误:Cannot autolaunch D-Bus(不影响登录)

凭证保存错误

账号 / 计费 / 权限

免费版与专业版区别:功能、限额与使用场景对比

免费版与专业版区别

支持的镜像仓库:Docker Hub、GCR、GHCR、K8s 等列表

轩辕镜像支持的镜像仓库

拉取失败是否扣流量?计费规则说明

拉取失败流量计费

KYSEC 权限不够:麒麟 V10/统信 UOS 下脚本执行被拦截

KYSEC 权限错误

如何申请开具发票?(增值税普票/专票)

开具发票

如何修改网站与仓库登录密码?

修改网站和仓库密码

配置与原理类

registry-mirrors 未生效:仍访问官方仓库或报错的原因

registry-mirrors 未生效

如何去掉镜像名称中的轩辕域名前缀?(docker tag)

去掉域名前缀

如何拉取指定架构镜像?(ARM64/AMD64 等多架构)

拉取指定架构镜像

查看全部问题→

用户好评

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

用户头像

oldzhang

运维工程师

Linux服务器

5

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

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